diff options
Diffstat (limited to 'FICS/makerank.h')
-rw-r--r-- | FICS/makerank.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/FICS/makerank.h b/FICS/makerank.h index bf255cc..6d70da2 100644 --- a/FICS/makerank.h +++ b/FICS/makerank.h @@ -6,15 +6,15 @@ #define COMPUTER_FILE DEFAULT_LISTS "/computer" #define MAX_LOGIN_NAME 21 +typedef struct _ratings { + int num; + int rating; +} ratings; + typedef struct _Entry { char name[MAX_LOGIN_NAME]; int computer; ratings r[4]; } ENTRY; -typedef struct _ratings { - int num; - int rating; -} ratings; - #endif |