diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2023-12-19 23:33:35 +0100 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2023-12-19 23:33:35 +0100 |
commit | 73ae8021b8ca461d5d17aad6d31f695b124b05a3 (patch) | |
tree | 384264846eb8b57b91d14ae6b49a75d458b64844 /FICS/command.c | |
parent | 5c84cb52bc28c87e2e5b9da2e7df1a196e4fc980 (diff) |
Sorted definitions and declarations and added alignment
Diffstat (limited to 'FICS/command.c')
-rw-r--r-- | FICS/command.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/FICS/command.c b/FICS/command.c index fd81679..67d551e 100644 --- a/FICS/command.c +++ b/FICS/command.c @@ -78,11 +78,11 @@ PUBLIC char *hadmin_handle = HADMINHANDLE; char *hadmin_email = HADMINEMAIL; char *reg_addr = REGMAIL; -PUBLIC time_t startuptime; -PUBLIC char fics_hostname[81]; -PUBLIC int player_high; -PUBLIC int game_high; -PUBLIC int MailGameResult; +PUBLIC char fics_hostname[81]; +PUBLIC int MailGameResult; +PUBLIC int game_high; +PUBLIC int player_high; +PUBLIC time_t startuptime; PUBLIC int commanding_player = -1; /* The player whose command your in */ |