22 lines
241 B
C
22 lines
241 B
C
#ifndef RANK_H
|
|
#define RANK_H
|
|
|
|
#define M_STR 255
|
|
#define M_STR_LEN 255
|
|
|
|
struct Rank
|
|
{
|
|
char name[M_STR_LEN];
|
|
int score;
|
|
}
|
|
|
|
struct RankList
|
|
{
|
|
Rank rank[M_STR];
|
|
Rank rank_sorted[M_STR];
|
|
int rank_count;
|
|
}
|
|
|
|
|
|
#endif
|