Skip to content

Instantly share code, notes, and snippets.

@dyigitpolat
Created November 12, 2016 18:34
Show Gist options
  • Save dyigitpolat/69c101bd40c5642f7e9f5bce46c5a65a to your computer and use it in GitHub Desktop.
Save dyigitpolat/69c101bd40c5642f7e9f5bce46c5a65a to your computer and use it in GitHub Desktop.
int compare( const void* a, const void* b)
{
TYPE aval;
TYPE bval;
aval = *( TYPE*)a;
bval = *( TYPE*)b;
if( aval > bval)
{
return 1;
}
else if( aval < bval)
{
return -1;
}
else
{
return 0;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment