Advertisement
Miquel_Fuster

seleccion.h

Jan 1st, 2022
1,538
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.19 KB | None | 0 0
  1. #ifndef SELECCION_H__
  2. #define SELECCION_H__
  3.  
  4. #include <stddef.h>
  5.  
  6. void ordenar(void *base, size_t n_elem, size_t tam_elem, int (*compara)(const void* elem_1, const void* elem_2));
  7.  
  8. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement