File: slist.h

package info (click to toggle)
xtrojka 123-16
  • links: PTS
  • area: non-free
  • in suites: woody
  • size: 492 kB
  • ctags: 443
  • sloc: ansic: 3,087; makefile: 133; sh: 19
file content (30 lines) | stat: -rw-r--r-- 553 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/*
 *	xtrojka (c) 1994,1995,1996 Maarten Los
 *
 *	#include "COPYRIGHT"	
 *
 *	created:	12.iii.1996
 *	modified:
 *
 *	header file for slist.c
 */

#ifndef _slist_h_
#define _slist_h_

#include "scores.h"

/*
 *	function prototypes
 */
void init_slist_mgr(void);
void slist_intr(Widget, XtIntervalId *);
void copy_oldscores(void);
void compare_scores(void);
flag is_newscore(SCORES);
void reset_changed(void);
int cmp_score(SCORES, SCORES);
flag file_changed(char *);
void compose_score_string(char*, int, SCORES, char*, char*);

#endif /* _slist_h_ */