mirror of
https://github.com/RolandWH/ceesort.git
synced 2025-03-14 17:01:36 +00:00
13 lines
245 B
C
13 lines
245 B
C
/*
|
|
* Filename: bsrch.h
|
|
* Author(s): Roland (r.weirhowell@gmail.com)
|
|
* Description: Header file for bsrch.c
|
|
* License: MIT (https://spdx.org/licenses/MIT.html)
|
|
*/
|
|
|
|
#pragma once
|
|
#include <stddef.h>
|
|
|
|
|
|
int bsrch(int target, int* arr, size_t n);
|