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
|