Files
TD1_DEV51_Qualite_Algo/quicksort.h
2025-09-10 17:21:59 +02:00

7 lines
96 B
C

#ifndef QUICKSORT_H
#define QUICKSORT_H
void quicksort(int* array, int low, int high);
#endif