college/Spring-2023/CS-2124/Lab-Work-1/src/lib.h

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