#ifndef _PRINT #define _PRINT #include "types.h" void print_piece(Piece); void print_square(Square); /* * Pretty print the board. The Color parameter let you choose the * orientation. Use WHITE for a white player perspective, BLACK otherwise. */ void print_board(Board, Color); #endif