1
0
Files

7 lines
100 B
C

#ifndef __QUICKSORT__
#define __QUICKSORT__
void quicksort(int* tab, int first, int last);
#endif