aboutsummaryrefslogtreecommitdiffstats
path: root/FICS/algcheck.h
diff options
context:
space:
mode:
authorMarkus Uhlin <markus@nifty-networks.net>2024-04-13 13:14:37 +0200
committerMarkus Uhlin <markus@nifty-networks.net>2024-04-13 13:14:37 +0200
commit754e9f069f9a937fe98bb392f425381e5ce04c0b (patch)
tree7efeaa1c2b39d4a7b99a41790a0b1c1f2e45bd18 /FICS/algcheck.h
parentfd24f8d55b89ab4750c6618d02d58b78d455f59f (diff)
Checked out files by tag 1.0
Diffstat (limited to 'FICS/algcheck.h')
-rw-r--r--FICS/algcheck.h12
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 */