blob: 45a697076b33ad3759877d56f0005303f858a641 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#include <stdio.h>
#include "board.h"
#include "print.h"
#include "types.h"
int main() {
Board b = board_init();
print_board(b, WHITE);
print_board(b, BLACK);
board_delete(b);
return 0;
}
|