Added upstream from http://ftp.icm.edu.pl/pub/loglan/
[loglan.git] / sources / int / net / ip / graph.h
1 #define GRAPH_CMD_POINT 1
2 #define GRAPH_CMD_END   2
3 #define GRAPH_CMD_LINE  3
4
5 #define GRAPH_COL_BACK  0
6 #define GRAPH_COL_BOARD 1
7 #define GRAPH_COL_OK    2
8 #define GRAPH_COL_ERROR 3
9
10 #ifndef NO_PROTOTYPES
11 void graph_on( int x, int y, char *title );
12 void graph_off( void );
13 void graph_point( int x, int color );
14 void graph_board( int size );
15 #else
16 void graph_on();
17 void graph_off();
18 void graph_point();
19 void graph_board();
20 #endif