initial commit

This commit is contained in:
2022-03-18 10:44:20 +00:00
commit 5c89d7c8fb
7 changed files with 528 additions and 0 deletions

5
src/bsrch.h Normal file
View File

@ -0,0 +1,5 @@
#pragma once
#include <stddef.h>
int bsrch(int target, int* arr, size_t n);