commit - 761cc9917db140d5e0aefe8776b091b4f56a3389
commit + 21e160dee99d78f74734db644bcdb2a7c395ade6
blob - ca7cae1404f3314e8bd1c93addd0063de557b6dc
blob + dd6d256b42617d9b655d430f73fcd3ce7fc4233f
--- FICS/movecheck.h
+++ FICS/movecheck.h
#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 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_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"