1
0
Files

7 lines
100 B
C
Raw Permalink Normal View History

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