1 
2 // move_do.h
3 
4 #ifndef MOVE_DO_H
5 #define MOVE_DO_H
6 
7 // includes
8 
9 #include "board.h"
10 #include "util.h"
11 
12 // functions
13 
14 extern void move_do (board_t * board, int move);
15 
16 #endif // !defined MOVE_DO_H
17 
18 // end of move_do.h
19 
20