Chameleon

Chameleon Svn Source Tree

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

Source at commit 1146 created 12 years 10 months ago.
By azimutz, Sync with trunk (r1145). Add nVidia dev id's, 0DF4 for "GeForce GT 450M" (issue 99) and 1251 for "GeForce GTX 560M" (thanks to oSxFr33k for testing).
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: 1146