Add the basic code structure and build system
[Project_algorithmic_C.git] / lib / ui.h
1 /*
2 * =====================================================================================
3 *
4 * Filename: ui.h
5 *
6 * Description: Header for user interface routines
7 *
8 * Version: 1.0
9 * Created: 15/03/2017 20:07:12
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 UI_H
20 #define UI_H
21
22 /* ncurses printing */
23 void print_board(int y, int x);
24
25 /* non ncurses printing */
26
27 #endif /* UI_H */