Corrige geração do código do ano.
[cascardo/declara.git] / lib / cmd.h
index 24ff5e0..dbfdab0 100644 (file)
--- a/lib/cmd.h
+++ b/lib/cmd.h
 struct cmd {
        char *name;
        int (*run) (struct declaracao *dec, char **args, int argc);
+       char *help;
 };
 
 int cmd_init(void);
 int cmd_add(struct cmd *cmd);
 int cmd_run(struct declaracao *dec, char *line);
+struct cmd * cmd_next(void **iter);
 
 #endif