diff options
Diffstat (limited to 'FICS/algcheck.h')
-rw-r--r-- | FICS/algcheck.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/FICS/algcheck.h b/FICS/algcheck.h index 8f7bda7..60d971b 100644 --- a/FICS/algcheck.h +++ b/FICS/algcheck.h @@ -29,13 +29,13 @@ #include "board.h" #endif -#define ALG_UNKNOWN -1 +#define DROP_CHAR '@' /* used by algcheck.c and movecheck.c */ +#define DROP_STR "@" -#define DROP_CHAR '@' /* used by algcheck.c and movecheck.c */ -#define DROP_STR "@" +extern int alg_is_move(char *); +extern int alg_parse_move(char *, game_state_t *, move_t *); +extern char *alg_unparse(game_state_t *, move_t *); -extern char *alg_unparse(game_state_t *, move_t *); -extern int alg_is_move(char *); -extern int alg_parse_move(char *, game_state_t *, move_t *); +/* extern int tolower(); */ #endif /* _ALGCHECK_H */ |