PSXSDK
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros
search.h
Go to the documentation of this file.
1 /*
2  * search.h
3  *
4  * PSXSDK
5  */
6 
7 #ifndef _SEARCH_H
8 #define _SEARCH_H
9 
10 void *lsearch(void *key , void *base , int belp , int width , int (*cmp)(void * , void *));
11 void *bsearch(void *key , void *base , int nel , int size , int (*cmp)(void * , void *));
12 
13 #endif
14