aboutsummaryrefslogtreecommitdiffstats
path: root/FICS
diff options
context:
space:
mode:
authorMarkus Uhlin <markus@nifty-networks.net>2023-12-19 23:36:50 +0100
committerMarkus Uhlin <markus@nifty-networks.net>2023-12-19 23:36:50 +0100
commitbaba5d0882318e655f9056e099a54c9c07afd80f (patch)
tree7fae17fefaec5c6780dcaee1fb0e3e126391f7d5 /FICS
parent31042c5bce3e79eeba55c22e49c927c35a3c6396 (diff)
Sorted the function declarations
Diffstat (limited to 'FICS')
-rw-r--r--FICS/command.h16
1 files changed, 6 insertions, 10 deletions
diff --git a/FICS/command.h b/FICS/command.h
index a7b8b0e..f658eda 100644
--- a/FICS/command.h
+++ b/FICS/command.h
@@ -118,18 +118,14 @@ typedef struct s_alias_type {
*/
extern int commanding_player;
-extern int process_input(int, char *);
-extern int process_new_connection(int, unsigned int);
+extern int alias_lookup();
+extern int gethostname();
+extern int process_command(int, char *, char **);
extern int process_disconnection(int);
-/* extern int process_incomplete(int, char *); */
extern int process_heartbeat(int *);
-
-extern void commands_init(void);
-
+extern int process_input(int, char *);
+extern int process_new_connection(int, unsigned int);
extern void TerminateCleanup(void);
-extern int process_command(int, char *, char **);
-
-extern int alias_lookup();
-extern int gethostname();
+extern void commands_init(void);
#endif /* _COMMAND_H */