1 /******************************************************************************
2  * 	congraph.h
3  ******************************************************************************
4  * 	Some ASCII graphical routines for the console
5  *
6  *	Author: Bjoern Berg, clergyman@gmx.de
7  *	Version: 0.1, 2003-01-25
8  *
9  *	History:
10  *	2003-01-25	berg	first implementation
11  *****************************************************************************/
12 
13 #ifndef _ANUBISNET_CONGRAPH
14 #define _ANUBISNET_CONGRAPH
15 
16 #include <stdio.h>
17 
18 void drawline (int length, int *cross, int numberofcrosses);
19 
20 #endif
21