#ifndef BINARY_SEARCH_H #define BINARY_SEARCH_H #include const int *binary_search(int value, const int *arr, size_t length); /* See GNUmakefile below for explanation * https://github.com/braoult/exercism/blob/master/c/templates/GNUmakefile */ #if defined UNIT_TEST || defined DEBUG #include #include #endif #ifdef TESTALL #undef TEST_IGNORE #define TEST_IGNORE() {} #endif #endif