diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2023-12-13 22:39:42 +0100 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2023-12-13 22:39:42 +0100 |
commit | 0becf42cbd02930791b8920ff9b484d2d46b44d9 (patch) | |
tree | ddec1a59093ebc85485d8cb9840daf20ddb36ca2 /FICS/makerank.c | |
parent | b4faa902db8d74efa976cefefa169051a963b0ce (diff) |
Fixed the preprocessor directives
Diffstat (limited to 'FICS/makerank.c')
-rw-r--r-- | FICS/makerank.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/FICS/makerank.c b/FICS/makerank.c index fe04fb7..e60726d 100644 --- a/FICS/makerank.c +++ b/FICS/makerank.c @@ -1,12 +1,13 @@ -#define COMPUTER_FILE DEFAULT_LISTS "/computer" -#define MAX_LOGIN_NAME 21 - +#include <ctype.h> #include <stdio.h> #include <stdlib.h> #include <string.h> -#include <ctype.h> + #include "config.h" +#define COMPUTER_FILE DEFAULT_LISTS "/computer" +#define MAX_LOGIN_NAME 21 + char *rnames[] = {"std", "blitz", "wild", "lightning"}; typedef struct _ratings { |