File: record.h

package info (click to toggle)
xjump 2.7
  • links: PTS
  • area: main
  • in suites: potato
  • size: 128 kB
  • ctags: 129
  • sloc: ansic: 954; makefile: 64; sh: 8
file content (26 lines) | stat: -rw-r--r-- 466 bytes parent folder | download | duplicates (8)
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
/*****************************************
  xjump version 2

  record.h   إå( 쥳ɴϢ )

  (C) July 16, 1997  ROYALPANDA
*****************************************/


typedef struct {

  int score;       /*  */
  int uid;         /* 桼ID */
  char name[32];   /* ̾ */
  int rank;        /*  */

} record_t;


extern record_t Record[];
extern int Record_entry;

extern char *Myname;

void init_record( void );
void save_record( int score );