Implement the othello board printing
[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
4ddf6f1a
JB
22const int empty = 0;
23const int white = 1;
24const int black = 2;
25
480acfeb
JB
26#endif /* CONSTANTS_H */
27