Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created November 11, 2019 15:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/d0d6d4e1a989279d58760266e46414fc to your computer and use it in GitHub Desktop.
Save parzibyte/d0d6d4e1a989279d58760266e46414fc to your computer and use it in GitHub Desktop.
int funcionQueCompara(const void *a, const void *b) {
// Castear a enteros
int aInt = *(int *) a;
int bInt = *(int *) b;
// Al restarlos, se debe obtener un número mayor, menor o igual a 0
// Con esto ordenamos de manera ascendente
return aInt - bInt;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment