Advertisement
Guest User

Untitled

a guest
Apr 10th, 2020
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.21 KB | None | 0 0
  1. #include "board.h"
  2. #include <stdio.h>
  3. #include <stdlib.h>
  4.  
  5. int main(int argc, char* argv[])
  6. {
  7.     char** board = make_default();
  8.     chess_move(board);
  9.     print(board);
  10.     clear(board);
  11.     return 0;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement