1 /*
2  *	xtrojka (c) 1994,1995,1996 Maarten Los
3  *
4  *	#include "COPYRIGHT"
5  *
6  *	created:	12.iii.1996
7  *	modified:
8  *
9  *	header file for screen.c
10  */
11 
12 #ifndef _screen_h_
13 #define _screen_h_
14 
15 /*
16  *	function prototypes
17  */
18 
19 void set_color(Widget, int, int);
20 void paint_widget(Widget, int, int);
21 void draw_string(Widget, int, int, char *);
22 
23 #endif /* _screen_h_ */
24