surtur
9917cd31f0
Some checks failed
continuous-integration/drone/push Build is failing
* added bubblesort func * targeting latest cdev image now * a couple more changes (I know it's lame)
11 lines
185 B
C
11 lines
185 B
C
#ifndef PJC_0X03_BUBBLESORT_H
|
|
#define PJC_0X03_BUBBLESORT_H
|
|
|
|
#include <stdio.h>
|
|
|
|
void bubblesort(int a[], int elems);
|
|
|
|
int return_bubblesorted(int a[]);
|
|
|
|
#endif //PJC_0X03_BUBBLESORT_H
|