TD1_DEV51_Qualite_Algo/bubblesort.h

7 lines
96 B
C
Raw Permalink Normal View History

2024-09-03 08:26:03 +02:00
#ifndef __BUBBLESORT__
#define __BUBBLESORT__
void bubblesort(int* array, int length);
#endif