diff options
Diffstat (limited to 'FICS/makerank.h')
-rw-r--r-- | FICS/makerank.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/FICS/makerank.h b/FICS/makerank.h new file mode 100644 index 0000000..49fe563 --- /dev/null +++ b/FICS/makerank.h @@ -0,0 +1,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 |