#ifndef _BOARD1_H_ #define _BOARD1_H_ #include #define EMPTY 0 #define BLACK 1 #define WHITE -1 #define WALL 2 #define B_SIZE 8 // BOARD構造体 typedef struct BOARD{ int data[B_SIZE + 2][B_SIZE + 2]; int color; }BOARD; // 盤面操作関数 void init(BOARD *board); void printBoard(BOARD *board); // メイン int main(int argc, char **argv); #endif