Fix to the const definition
[Project_algorithmic_C.git] / lib / constants.h
CommitLineData
480acfeb
JB
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
2e5c1894
JB
22#define board_size 8
23
24extern const int empty;
25extern const int white;
26extern const int black;
4ddf6f1a 27
480acfeb
JB
28#endif /* CONSTANTS_H */
29