aboutsummaryrefslogtreecommitdiffstats
path: root/cmd.h
diff options
context:
space:
mode:
Diffstat (limited to 'cmd.h')
-rw-r--r--cmd.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/cmd.h b/cmd.h
deleted file mode 100644
index 74cf53f..0000000
--- a/cmd.h
+++ /dev/null
@@ -1,26 +0,0 @@
-/* public things from cmd.c */
-
-#ifndef _CMD_H_
-#define _CMD_H_
-
-typedef struct cmdstruct {
- char *sortname; /* set to NULL if you want to sort by
- * command name */
- char *name; /* command name */
- char *help; /* short help */
- function_str funct; /* function to call */
- struct cmdstruct *next;
-} cmdstruct;
-
-extern cmdstruct *commands;
-
-void show_stat(void);
-
-void cmd_add_command( cmdstruct *cmd );
-
-void initialize_cmd(void);
-
-int print_all_options(FILE *file);
-
-#endif /* _CMD_H_ */
-