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 /main.c |
initial commit
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -0,0 +1,13 @@ +#include <stdio.h> + +#include "board.h" +#include "print.h" +#include "types.h" + +int main() { + Board b = board_init(); + print_board(&b); + + return 0; +} + |