Skip to content

Instantly share code, notes, and snippets.

@neonfuz
Created December 9, 2015 00:27
Show Gist options
  • Save neonfuz/da20942fb8b48e7b7084 to your computer and use it in GitHub Desktop.
Save neonfuz/da20942fb8b48e7b7084 to your computer and use it in GitHub Desktop.
void check (int test, const char * message, ...)
{
if (test) {
va_list args;
va_start (args, message);
vfprintf (stderr, message, args);
va_end (args);
fprintf (stderr, "\n");
exit (EXIT_FAILURE);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment