diff options
Diffstat (limited to 'FICS')
-rw-r--r-- | FICS/eco.c | 8 | ||||
-rw-r--r-- | FICS/eco.h | 8 |
2 files changed, 8 insertions, 8 deletions
@@ -11,14 +11,6 @@ #include "playerdb.h" #include "utils.h" -#define SPACE_CHK()\ - do {\ - if (space > 0) {\ - FENstring[FENcount++] = (space + '0');\ - space = 0;\ - }\ - } while (0) - PUBLIC char *book_dir = DEFAULT_BOOK; ECO_entry *ECO_book[1096]; @@ -1,6 +1,14 @@ #ifndef _ECO_H #define _ECO_H +#define SPACE_CHK()\ + do {\ + if (space > 0) {\ + FENstring[FENcount++] = (space + '0');\ + space = 0;\ + }\ + } while (0) + typedef struct { char ECO[4]; char FENpos[80]; |