/* * 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);