Skip to content

Instantly share code, notes, and snippets.

@arosh
Created September 29, 2012 10:56
Show Gist options
  • Save arosh/3803693 to your computer and use it in GitHub Desktop.
Save arosh/3803693 to your computer and use it in GitHub Desktop.
basic compare in C
int cmp(int* a, int* b) {
return *a < *b ? -1 : *a < *b;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment