TD1_DEV51_Qualite_Algo/bubblesort.h
2024-09-03 08:26:03 +02:00

7 lines
96 B
C

#ifndef __BUBBLESORT__
#define __BUBBLESORT__
void bubblesort(int* array, int length);
#endif