fen2pos: no more pos_checkers etc... position.c: pos_check -> pos_ok (bool)

This commit is contained in:
2024-03-27 12:40:16 +01:00
parent 08ba989170
commit 09afd98971
5 changed files with 32 additions and 19 deletions

View File

@@ -165,7 +165,7 @@ bitboard_t pos_checkers(const pos_t *pos, const color_t color);
bitboard_t pos_king_pinners(const pos_t *pos, const color_t color);
bitboard_t pos_king_blockers(const pos_t *pos, const color_t color, const bitboard_t );
int pos_check(const pos_t *pos, const bool strict);
bool pos_ok(const pos_t *pos, const bool strict);
void pos_print(const pos_t *pos);
void pos_print_mask(const pos_t *pos, const bitboard_t mask);