bsearch#

Synopsis#

#include <stdlib.h>

void *bsearch(const void *key, const void *base, size_t nitems, size_t size, int (*compar)(const void *, const void *));

Description#

The function searches an ascending order array (with binary search) for an element with specified value.

Arguments: key - a value to be found, base - a pointer to the beginning of array area to be searched, nitems - the number of array elements, size - the number of bytes taken by each element, compar - the comparison function.

Function searches an array of nitems objects, the initial member of which is pointed to by base, for a member that matches the object pointed to by key. The size (in bytes) of each member of the array is specified by size.

The contents of the array should be in ascending sorted order according to the comparison function referenced by compar. The compar routine is expected to have two arguments that point to the key object and to an array member, in that order. It should return an integer that is less than, equal to, or greater than zero if the key object is found, respectively, to be less than, to match, or be greater than the array member.

Return value#

The function returns a pointer to a matching member of the array, or a null pointer if no match is found.
If two members compare as equal, which member is matched is unspecified.

Errors#

No errors are defined.