Skip to content

Instantly share code, notes, and snippets.

@mgarg1
Created April 3, 2016 20:13
Show Gist options
  • Save mgarg1/d96a1371874f3215a5dcb638b2b4e8d6 to your computer and use it in GitHub Desktop.
Save mgarg1/d96a1371874f3215a5dcb638b2b4e8d6 to your computer and use it in GitHub Desktop.
#define COMMAND(NAME) { #NAME, NAME ## _command }
struct command commands[] =
{
COMMAND (quit),
COMMAND (help),
...
};
struct command
{
char *name;
void (*function) (void);
};
struct command commands[] =
{
{ "quit", quit_command },
{ "help", help_command },
...
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment