blob: 7f8574e8372e2731c8dd50703879bf03a5e832c0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/*
* search.h
*
* PSXSDK
*/
#ifndef _SEARCH_H
#define _SEARCH_H
void *lsearch(void *key , void *base , int belp , int width , int (*cmp)(void * , void *));
void *bsearch(void *key , void *base , int nel , int size , int (*cmp)(void * , void *));
#endif
|