TP 13 exo2: Code cleanups
[TD_C.git] / TP_13 / exo2 / lib / display.h
CommitLineData
7515f897
JB
1/*
2 * =====================================================================================
3 *
4 * Filename: display.h
5 *
6 * Description: Headers for display 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 DISPLAY_H
20#define DISPLAY_H
21
5df3071e
JB
22#include "coordinates.h"
23
811d4abe 24/* ncurses printing */
7515f897 25void print_board(int y, int x);
5df3071e 26void print_coordinates(coordinates_t coordinates_array[], int base_y, int base_x);
7515f897 27
811d4abe 28/* non ncurses printing */
811d4abe 29
7515f897 30#endif /* DISPLAY_H */