Files
cli-chess/src/map.h
2024-12-02 01:44:43 +01:00

15 lines
232 B
C

#include <stdint.h>
#include <stddef.h>
#include <stdlib.h>
#include <stdio.h>
#include <stdbool.h>
#include <string.h>
#define SET_SIZE 4096
#define BOARD_SIZE 64
typedef int_fast8_t piece_t;
typedef piece_t Board[BOARD_SIZE];