Function object: Difference between revisions

Content deleted Content added
Line 32:
int compareInts(const void* a, const void* b)
{
return ( *(int *)a - *(int *)b) );
}
...