ceesort/src/bsrch.h

13 lines
242 B
C
Raw Permalink Normal View History

2022-05-26 13:34:12 +01:00
/*
* Filename: bsrch.h
* Author(s): Roland (r.weirhowell@gmail.com)
* Description: Header file for bsrch.c
* License: MIT (https://spdx.org/licenses/MIT.html)
*/
2022-03-18 10:44:20 +00:00
#pragma once
#include <stddef.h>
int bsrch(int target, int* arr, int n);