Fix to the const definition
[Project_algorithmic_C.git] / lib / constants.h
1 /*
2 * =====================================================================================
3 *
4 * Filename: constants.h
5 *
6 * Description: Header for constant values
7 *
8 * Version: 1.0
9 * Created: 24/04/2017 21:06:32
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 CONSTANTS_H
20 #define CONSTANTS_H
21
22 #define board_size 8
23
24 extern const int empty;
25 extern const int white;
26 extern const int black;
27
28 #endif /* CONSTANTS_H */
29