15 lines
232 B
C
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];
|