6 lines
135 B
C
Raw Normal View History

2024-02-01 10:45:55 -06:00
#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