diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2024-03-17 22:29:55 +0100 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2024-03-17 22:29:55 +0100 |
commit | 1674648c1d85420449a5e83ee818d46b3c6a9294 (patch) | |
tree | 2e7cc075fad108d4789fa83e8bfb094a4d2b373b /FICS | |
parent | 972346f900204b7cc66fea35a950e81704c9685b (diff) |
Aligned defines
Diffstat (limited to 'FICS')
-rw-r--r-- | FICS/movecheck.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/FICS/movecheck.h b/FICS/movecheck.h index 53a1712..f1a22ac 100644 --- a/FICS/movecheck.h +++ b/FICS/movecheck.h @@ -25,19 +25,19 @@ #ifndef _MOVECHECK_H #define _MOVECHECK_H -#define MOVE_OK 0 -#define MOVE_ILLEGAL 1 -#define MOVE_STALEMATE 2 -#define MOVE_CHECKMATE 3 -#define MOVE_AMBIGUOUS 4 -#define MOVE_NOMATERIAL 5 - -#define MS_NOTMOVE 0 -#define MS_COMP 1 -#define MS_COMPDASH 2 -#define MS_ALG 3 -#define MS_KCASTLE 4 -#define MS_QCASTLE 5 +#define MOVE_OK 0 +#define MOVE_ILLEGAL 1 +#define MOVE_STALEMATE 2 +#define MOVE_CHECKMATE 3 +#define MOVE_AMBIGUOUS 4 +#define MOVE_NOMATERIAL 5 + +#define MS_NOTMOVE 0 +#define MS_COMP 1 +#define MS_COMPDASH 2 +#define MS_ALG 3 +#define MS_KCASTLE 4 +#define MS_QCASTLE 5 #define isrank(c) (((c) <= '8') && ((c) >= '1')) #define isfile(c) (((c) >= 'a') && ((c) <= 'h')) |