forked from menault/TD1_DEV51_Qualite_Algo
7 lines
100 B
C
7 lines
100 B
C
#ifndef __QUICKSORT__
|
|
#define __QUICKSORT__
|
|
|
|
void quicksort(int* tab, int first, int last);
|
|
|
|
#endif
|