home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1997 May / Pcwk0597.iso / sybase / starbuck / h.z / SEARCH.H < prev    next >
C/C++ Source or Header  |  1996-07-24  |  688b  |  26 lines

  1. /*
  2.  *  search.h    Function prototypes for searching functions
  3.  *
  4.  *  Copyright by WATCOM International Corp. 1988-1996.  All rights reserved.
  5.  */
  6. #ifndef _SEARCH_H_INCLUDED
  7. #define _SEARCH_H_INCLUDED
  8. #ifdef __cplusplus
  9. extern "C" {
  10. #endif
  11.  
  12. #ifndef _COMDEF_H_INCLUDED
  13.  #include <_comdef.h>
  14. #endif
  15.  
  16. _WCRTLINK extern void *lfind( const void *__key, const void *__base, 
  17.                   unsigned *__num, unsigned __width, 
  18.                   int (* __compare)(const void *, const void *) );
  19. _WCRTLINK extern void *lsearch( const void *__key, void *__base, 
  20.                 unsigned *__num, unsigned __width, 
  21.                 int (* __compare)(const void *, const void *) );
  22. #ifdef __cplusplus
  23. };
  24. #endif
  25. #endif
  26.