6 lines
135 B
C

#ifndef CUST_LIB
#define CUST_LIB
int binary_search(int arr[], int m, int size);
void bubble_sort(int a[], int n);
#endif // !CUST_LIB