#ifndef _CMDS_H_901ef723_ #define _CMDS_H_901ef723_ #include typedef struct cmd CMD; struct cmd { const char *name; const char *help; void (*handle)(const char *, int, FILE *); } ; #define CMD_FXNS(name) \ &cmd_##name##_handle extern void register_cmd(const CMD *); #endif