diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2023-12-17 01:33:54 +0100 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2023-12-17 01:33:54 +0100 |
commit | ff50710fae43da970970a8b6855827e313c1b331 (patch) | |
tree | 86063280edb48abd34c07a56d1dc2a39e24584bc | |
parent | bf4de0aab3f3c058144595d4292147e30c8bb4e1 (diff) |
Added argument lists
-rw-r--r-- | FICS/eco.h | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -24,12 +24,12 @@ typedef struct { 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(); +extern char *boardToFEN(int); +extern char *getECO(int); +extern int com_eco(int, param_list); +extern void BookInit(void); +extern void ECO_init(void); +extern void LONG_init(void); +extern void NIC_init(void); #endif |