1 /* read.h         read board from ... engine/icds */
2 
3 /*
4  * xcheckers:     a point and click checkerboard
5  * (C):           1999, 2000 Peter Chiocchetti <girbal@tacheles.de>
6  */
7 
8 
9 #define strneq(a,b,n) (strncmp ((a),(b),(n)) == 0)
10 
11 
12 /* read_5.c       read board from icds style 5 */
13 
14 void            readPos5(char *line);
15 
16 /* read_s.c       read board from simplech */
17 
18 void            readPosS(char *line);
19