diff options
Diffstat (limited to 'include/print.h')
-rw-r--r-- | include/print.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/print.h b/include/print.h new file mode 100644 index 0000000..bc2f9df --- /dev/null +++ b/include/print.h @@ -0,0 +1,10 @@ +#ifndef _PRINT +#define _PRINT + +#include "types.h" + +void print_piece(Piece); +void print_square(Square); +void print_board(Board*); + +#endif |