Header: stdlib.h
Syntax:
void *bsearch
(
const void *key,
const void *base,
size_t nmemb,
size_t size,
int (*compar)(const void *, const void *)
);
Purpose: Searches an array of nmemb objects, the initial member of which is pointed to by base, for a member that matches key.
|
|
|