Add forgotten files 1.4.70b
[polyglot.git] / fen.h
1
2 // fen.h
3
4 #ifndef FEN_H
5 #define FEN_H
6
7 // includes
8
9 #include "board.h"
10 #include "util.h"
11
12 // "constants"
13
14 extern const char * StartFen;
15
16 // functions
17
18 extern bool board_from_fen (board_t * board, const char string[]);
19 extern bool board_to_fen   (const board_t * board, char string[], int size);
20
21 #endif // !defined FEN_H
22
23 // end of fen.h
24