Guest User

Untitled

a guest
Apr 22nd, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. #ifndef H_HIGHSCORE_TABLE
  2. #define H_HIGHSCORE_TABLE
  3.  
  4. #define HIGHSCORE_FILE "highscores.dat"
  5. #define MAX_HIGHSCORE_ENTRIES 5
  6.  
  7. typedef struct {
  8. int score;
  9. char naam[20];
  10. char datum[20];
  11. } Score_Entry;
  12.  
  13. void load_highscores();
  14.  
  15. void check_highscore_entry(int score);
  16.  
  17. void display_highscores();
  18.  
  19. void save_highscores();
  20.  
  21. #endif
Add Comment
Please, Sign In to add comment