ADD: started with adding a "LS" command that lists the commands without the help text printed. To give easy clean list.

This commit is contained in:
iceman1001
2015-07-22 11:19:15 +02:00
parent 5b59bf20c7
commit f445df401e
5 changed files with 26 additions and 3 deletions

View File

@@ -23,6 +23,8 @@ typedef struct command_s
// Print help for each command in the command array
void CmdsHelp(const command_t Commands[]);
// Print each command in the command array without help
void CmdsLS(const command_t Commands[]);
// Parse a command line
void CmdsParse(const command_t Commands[], const char *Cmd);
void dumpCommandsRecursive(const command_t cmds[], int markdown);