PJC-0x03/bubblesort.h
surtur 9917cd31f0
Some checks failed
continuous-integration/drone/push Build is failing
updated .drone.yml + added some files + changes
* added bubblesort func
* targeting latest cdev image now
* a couple more changes (I know it's lame)
2020-04-12 23:43:35 +02:00

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