Skip to content

Instantly share code, notes, and snippets.

@revENGR
Created May 3, 2020 10:29
Show Gist options
  • Save revENGR/066d76cf29bd427041f7bbadac15a5a2 to your computer and use it in GitHub Desktop.
Save revENGR/066d76cf29bd427041f7bbadac15a5a2 to your computer and use it in GitHub Desktop.
BossaBot
struct Messages { char *cmd; void (* func)(int,char *,char *); } msgs[] = {
{ "352", _352 },
{ "376", _376 },
{ "433", _433 },
{ "422", _376 },
{ "PRIVMSG", _PRIVMSG },
{ "PING", _PING },
{ "NICK", _NICK },
{ (char *)0, (void (*)(int,char *,char *))0 } };
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment