diff options
Diffstat (limited to 'help.h')
-rw-r--r-- | help.h | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -10,6 +10,12 @@ struct cmdnames { } **names; }; +static inline void mput_char(char c, unsigned int num) +{ + while(num--) + putchar(c); +} + unsigned int load_command_list(const char *prefix, struct cmdnames *main_cmds, struct cmdnames *other_cmds); |