PJC-0x03/bubblesort.h

11 lines
185 B
C
Raw Normal View History

#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