Files
TD1_DEV51_Qualite_Algo/quicksort.h

7 lines
98 B
C
Raw Normal View History

2025-09-15 14:34:48 +02:00
#ifndef QUICKSORT_H
#define QUICKSORT_H
void quicksort(int* array, int left, int right);
#endif