aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Uhlin <markus@nifty-networks.net>2024-05-05 03:47:04 +0200
committerMarkus Uhlin <markus@nifty-networks.net>2024-05-05 03:47:04 +0200
commit36266cd9f24a6af598a1035628e6a6d07d4b12db (patch)
tree28fc6cd06bf542c20455e0a72a126682c798d691
parent6485aa56c9dc385842abab5c741aaeb966372961 (diff)
Fixed the function declarations
-rw-r--r--FICS/algcheck.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/FICS/algcheck.h b/FICS/algcheck.h
index 60d971b..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 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 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 */