diff options
author | Raúl Benencia <rul@kalgan.cc> | 2015-03-27 11:19:16 -0300 |
---|---|---|
committer | Raúl Benencia <rul@kalgan.cc> | 2015-03-27 11:19:16 -0300 |
commit | e7497d2dde46b8fae5493c127f4dc33307a65da5 (patch) | |
tree | 4f60b18a3cf917b201f627bc448debafcf04a38b /include/print.h |
initial commit
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 |