summaryrefslogtreecommitdiff
path: root/include/print.h
blob: 0fcbe3aead32c3c13ea3fa0af965ec2f8501a6ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#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
nihil fit ex nihilo