You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
498 B

#ifndef output_std_2b894a04_3a0c_4223_bf83_6ab40c0f5e57_h__
#define output_std_2b894a04_3a0c_4223_bf83_6ab40c0f5e57_h__
/**
* Print the Sudoku on stdout using unicode borders
* @param s The Sudoku
* @param color Use colors or not
*/
void std_ausgabe_unicode(sudoku* s,int color);
/**
* Print the Sudoku on stdout using ascii
* @param s The Sudoku
* @param color Use colors or not
*/
void std_ausgabe(sudoku* s,int color);
#endif /* output_std_2b894a04_3a0c_4223_bf83_6ab40c0f5e57_h__ */