Add forgotten files 1.4.70b
[polyglot.git] / move_gen.h
1
2 // move_gen.h
3
4 #ifndef MOVE_GEN_H
5 #define MOVE_GEN_H
6
7 // includes
8
9 #include "board.h"
10 #include "list.h"
11 #include "util.h"
12
13 // functions
14
15 extern void gen_legal_moves (list_t * list, const board_t * board);
16 extern void gen_moves       (list_t * list, const board_t * board);
17
18 #endif // !defined MOVE_GEN_H
19
20 // end of move_gen.h
21