blob: 422eef23c06d393de49b07953cc364619244b8d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#ifndef _ECO_H
#define _ECO_H
typedef struct {
char ECO[4];
char FENpos[80];
} ECO_entry;
typedef struct {
char NIC[6];
char FENpos[80];
} NIC_entry;
typedef struct {
char LONG[80];
char FENpos[80];
} LONG_entry;
extern char *boardToFEN();
extern char *getECO();
extern int com_eco();
extern void BookInit();
extern void ECO_init();
extern void LONG_init();
extern void NIC_init();
#endif
|