Chameleon

Chameleon Svn Source Tree

Root/branches/rewrite/i386/modules/klibc/bsearch.c

Source at commit 1129 created 12 years 11 months ago.
By meklort, Change options.o so that it reloads the system config as well. Also change it so that it uses that config for variables (NOTE: if the calue exists in chameleonConfig, it's used instead.
1/*
2 * bsearch.c
3 */
4
5#include <stdlib.h>
6
7void *bsearch(const void *key, const void *base, size_t nmemb,
8 size_t size, int (*cmp) (const void *, const void *))
9{
10while (nmemb) {
11size_t mididx = nmemb / 2;
12const void *midobj = base + mididx * size;
13int diff = cmp(key, midobj);
14
15if (diff == 0)
16return (void *)midobj;
17
18if (diff > 0) {
19base = midobj + size;
20nmemb -= mididx + 1;
21} else
22nmemb = mididx;
23}
24
25return NULL;
26}
27

Archive Download this file

Revision: 1129