mirror of
				https://github.com/RolandWH/ceesort.git
				synced 2025-11-04 03:42:12 +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);
 |