Clean up the array copying for the new high scores list. It was way
[attac-man.git] / include / score.h
blobc829e311c08c20f5a12d5d9ddb1e9a4e4b3eda18
1 #ifndef SCORE_H
2 #define SCORE_H
4 typedef int score_lock_t;
6 void rewrite_score_file(void);
7 int high_score(uint64_t score);
8 void add_high_score(char *name, uint64_t score);
9 score_lock_t lock_scores(void);
10 void unlock_scores(score_lock_t);
11 void high_scores_init(void);
13 void debug_print_high_scores(void);
15 #endif