blob: 49fe563798c79900b8ee714c800e94e10abe2a95 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef MAKERANK_H
#define MAKERANK_H
typedef struct _Entry {
char name[MAX_LOGIN_NAME];
int computer;
ratings r[4];
} ENTRY;
typedef struct _ratings {
int num;
int rating;
} ratings;
#endif
|