1
0
Files
TD1_DEV51_Qualite_Algo_Patr…/quicksort.h

7 lines
100 B
C
Raw Normal View History

2025-09-10 17:24:37 +02:00
#ifndef __QUICKSORT__
#define __QUICKSORT__
void quicksort(int* tab, int first, int last);
#endif