diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2023-12-16 18:23:16 +0100 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2023-12-16 18:23:16 +0100 |
commit | 7070471bb98b6f0bf2e81eb0de5f77a7068bcaed (patch) | |
tree | f9666082b121f21f7df68777340af40f0245731c | |
parent | 675062a74d8c5b3dbf538d8835762787fae249c2 (diff) |
Moved structs to the header
-rw-r--r-- | FICS/eco.c | 16 | ||||
-rw-r--r-- | FICS/eco.h | 15 |
2 files changed, 16 insertions, 15 deletions
@@ -4,6 +4,7 @@ #include "command.h" #include "common.h" #include "config.h" +#include "eco.h" #include "gamedb.h" #include "gameproc.h" #include "obsproc.h" @@ -12,21 +13,6 @@ PUBLIC char *book_dir = DEFAULT_BOOK; -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; - ECO_entry *ECO_book[1096]; NIC_entry *NIC_book[1096]; LONG_entry *LONG_book[4096]; @@ -1,6 +1,21 @@ #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(); |