aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Uhlin <markus@nifty-networks.net>2023-12-19 23:38:15 +0100
committerMarkus Uhlin <markus@nifty-networks.net>2023-12-19 23:38:15 +0100
commite1dd08f54e212e62716c78dcd2779fce661de13a (patch)
tree7fb41d7261ab525a2765a40591c42b4d51b9a97d
parent154040fca4b016681aa92c5b31c30a853c7e6710 (diff)
Moved variable declarations
-rw-r--r--FICS/command.h56
1 files changed, 28 insertions, 28 deletions
diff --git a/FICS/command.h b/FICS/command.h
index 69b8618..846ca3c 100644
--- a/FICS/command.h
+++ b/FICS/command.h
@@ -28,34 +28,6 @@
#include "variable.h"
#include "stdinclude.h"
-extern char *adhelp_dir;
-extern char *adj_dir;
-extern char *board_dir;
-extern char *comhelp_dir;
-extern char *config_dir;
-extern char *def_prompt;
-extern char *help_dir[NUM_LANGS];
-extern char *hist_dir;
-extern char *index_dir;
-extern char *info_dir;
-extern char *journal_dir;
-extern char *lists_dir;
-extern char *mess_dir;
-extern char *news_dir;
-extern char *player_dir;
-extern char *source_dir;
-extern char *stats_dir;
-extern char *usage_dir[NUM_LANGS];
-extern char *uscf_dir;
-
-extern char *hadmin_handle;
-
-extern char fics_hostname[81];
-extern int MailGameResult;
-extern int game_high;
-extern int player_high;
-extern time_t startuptime;
-
/* Maximum length of a login name */
#define MAX_LOGIN_NAME 20
@@ -113,6 +85,34 @@ typedef struct s_alias_type {
char *alias;
} alias_type;
+extern char *adhelp_dir;
+extern char *adj_dir;
+extern char *board_dir;
+extern char *comhelp_dir;
+extern char *config_dir;
+extern char *def_prompt;
+extern char *help_dir[NUM_LANGS];
+extern char *hist_dir;
+extern char *index_dir;
+extern char *info_dir;
+extern char *journal_dir;
+extern char *lists_dir;
+extern char *mess_dir;
+extern char *news_dir;
+extern char *player_dir;
+extern char *source_dir;
+extern char *stats_dir;
+extern char *usage_dir[NUM_LANGS];
+extern char *uscf_dir;
+
+extern char *hadmin_handle;
+
+extern char fics_hostname[81];
+extern int MailGameResult;
+extern int game_high;
+extern int player_high;
+extern time_t startuptime;
+
/*
* The player whose command you're in
*/