4 size_t size,
int (*
compar)(
const void *,
const void *))
14 mid = low + ((high - low) >> 1);
15 p = ((
char *)base) + mid * size;
16 r = (*compar)(
key, p);
char base
This version is stamped on May 10, 2016.
void * bsearch(const void *__key, const void *__base, size_t __nmemb, size_t __size, int(*__compar)(const void *, const void *))
int compar(const void *v_lhs, const void *v_rhs)