ceesort/src/lsrch.h

13 lines
223 B
C

/*
* Filename: lsrch.h
* Author(s): Roland (r.weirhowell@gmail.com)
* Description: Header file for lsrch.c
* License: MIT (https://spdx.org/licenses/MIT.html)
*/
#pragma once
int lsrch(int* arr, int n, int target);