1
0
This commit is contained in:
2024-09-03 08:26:03 +02:00
parent fe64cb7aa5
commit b8c6f517fc
3 changed files with 30 additions and 2 deletions

6
bubblesort.h Normal file
View File

@@ -0,0 +1,6 @@
#ifndef __BUBBLESORT__
#define __BUBBLESORT__
void bubblesort(int* array, int length);
#endif