summaryrefslogtreecommitdiff
path: root/src/engine/moves/king.c
diff options
context:
space:
mode:
authorAargh Rai <aargh.rai+git@gmail.com>2026-05-31 13:07:46 +0530
committerAargh Rai <aargh.rai+git@gmail.com>2026-05-31 13:07:46 +0530
commit8671756d141292d4ec9747ec8de6e9cf3324777d (patch)
treef14edf785f82cb6c6f3dc61c5ad1eb2689faef1f /src/engine/moves/king.c
parent198bf7c46552059581fda144ec08a9114258123e (diff)
CC in build.c & fen strings
Diffstat (limited to 'src/engine/moves/king.c')
-rw-r--r--src/engine/moves/king.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/engine/moves/king.c b/src/engine/moves/king.c
index b2fea9e..9ce3eb8 100644
--- a/src/engine/moves/king.c
+++ b/src/engine/moves/king.c
@@ -34,19 +34,3 @@ void get_king_moves(moves_t* moves, position_t position) {
add_move(moves, king_square, to);
}
}
-
-#ifdef TEST_MOD
-#include <stdbool.h>
-#include "../bitboard.c"
-#include "./vec.c"
-
-bool test_empty_board() {
- int i = 0;
- while (i++ < 1000000000);
- return true;
-}
-
-bool test_friendly_pieces() {
- return false;
-}
-#endif