diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2024-01-04 23:27:36 +0100 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2024-01-04 23:27:36 +0100 |
commit | 91ad3c86afbdf0e6e6c4f8afbd90f48689a5b635 (patch) | |
tree | 811ea33114d8b9efc82f0eb2635230a77b49a571 /FICS | |
parent | f504d2b8070448ccc67333e65a8ce28470b841e2 (diff) |
Aligned the function declarations
Diffstat (limited to 'FICS')
-rw-r--r-- | FICS/algcheck.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/FICS/algcheck.h b/FICS/algcheck.h index 0752423..6a0fda7 100644 --- a/FICS/algcheck.h +++ b/FICS/algcheck.h @@ -32,10 +32,8 @@ #define DROP_CHAR '@' /* used by algcheck.c and movecheck.c */ #define DROP_STR "@" -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(); */ +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 *); #endif /* _ALGCHECK_H */ |