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