 |
bsearch |
Function (tigcc.a) |
Binary search.
bsearch searches a table (array) of NoOfElements elements in memory, and returns
the address of the first entry in the table that matches the search key. Because this is a
binary search, the first matching entry is not necessarily the first entry in the table.
If no match is found, bsearch returns NULL.
NoOfElements gives the number of elements in the table.
Width specifies the number of bytes in each table entry.
BasePtr points to the base (0-th element) of the table to be sorted.
Key is a pointer to the search key.
cmp_func, the comparison function, accepts two arguments,
elem1 and elem2, each a pointer to an entry in the table.
The comparison function compares each of the pointed-to items (*elem1 and
*elem2), and returns a short integer based on the result of the comparison:
- If *elem1 < *elem2, cmp_func should return an integer < 0.
- If *elem1 == *elem2, cmp_func should return 0.
- If *elem1 > *elem2, cmp_func should return an integer > 0.
See also: qsort