diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2024-05-05 17:20:11 +0200 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2024-05-05 17:20:11 +0200 |
commit | 21e160dee99d78f74734db644bcdb2a7c395ade6 (patch) | |
tree | 3e8c3cdb3ba81436385565e275dc59918f2e15a6 /FICS/movecheck.h | |
parent | 761cc9917db140d5e0aefe8776b091b4f56a3389 (diff) |
Aligned defines
Diffstat (limited to 'FICS/movecheck.h')
-rw-r--r-- | FICS/movecheck.h | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/FICS/movecheck.h b/FICS/movecheck.h index ca7cae1..dd6d256 100644 --- a/FICS/movecheck.h +++ b/FICS/movecheck.h @@ -25,22 +25,22 @@ #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 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 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')) +#define isrank(c) (((c) <= '8') && ((c) >= '1')) +#define isfile(c) (((c) >= 'a') && ((c) <= 'h')) #if !defined(_BOARD_H) #include "board.h" |