7 lines
96 B
C
7 lines
96 B
C
|
#ifndef __BUBBLESORT__
|
||
|
#define __BUBBLESORT__
|
||
|
|
||
|
void bubblesort(int* array, int length);
|
||
|
|
||
|
#endif
|