Fix to the const definition
[Project_algorithmic_C.git] / lib / othello.h
CommitLineData
4ddf6f1a
JB
1/*
2 * =====================================================================================
3 *
4 * Filename: othello.h
5 *
6 * Description: Header for othello board handling functions
7 *
8 * Version: 1.0
9 * Created: 25/04/2017 15:16:37
10 * Revision: none
11 * Compiler: gcc
12 *
13 * Author: Jerome Benoit (fraggle), jerome.benoit@piment-noir.org
14 * Organization: Piment Noir
15 *
16 * =====================================================================================
17 */
18
19#ifndef OTHELLO_H
20#define OTHELLO_H
21
2e5c1894
JB
22#include "constants.h"
23
24int pawn[board_size][board_size] = {
25 {0, 0}
26};
27
4ddf6f1a 28#endif /* OTHELLO_H */