summary refs log tree commit diff stats
path: root/c/binary-search/binary_search.h
blob: 46d57cca6f4b0d118be8d6aa038ca66e3fa94e58 (plain) (blame)
1
2
3
4
5
6
7
8
#ifndef BINARY_SEARCH_H
#define BINARY_SEARCH_H

#include <stddef.h>

const int *binary_search(int value, const int *arr, size_t length);

#endif