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.
18 lines
386 B
18 lines
386 B
#ifndef output_std_h__
|
|
#define output_std_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_h__ */ |