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 slist.c
10  */
11 
12 #ifndef _slist_h_
13 #define _slist_h_
14 
15 #include "scores.h"
16 
17 /*
18  *	function prototypes
19  */
20 void init_slist_mgr(void);
21 void slist_intr(Widget, XtIntervalId *);
22 void copy_oldscores(void);
23 void compare_scores(void);
24 flag is_newscore(SCORES);
25 void reset_changed(void);
26 int cmp_score(SCORES, SCORES);
27 flag file_changed(char *);
28 void compose_score_string(char*, int, SCORES, char*, char*);
29 
30 #endif /* _slist_h_ */
31