fixed move generation

This commit is contained in:
2024-03-23 20:39:12 +01:00
parent 69790345c5
commit 84fad9abb8
8 changed files with 104 additions and 37 deletions

View File

@ -1,5 +1,6 @@
#include <stdio.h>
#include <stdint.h>
#include <chess/move.h>
#define fprintArray(file, printer, arr) \
do { \
@ -25,3 +26,5 @@
void printerll(FILE *file, long long num);
void printerull(FILE *file, unsigned long long num);
void printPieceMask(uint_least64_t mask);
void fieldToString(uint_least8_t field, char *output);
void printMove(const struct move_t move);