home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 October / Chip_1997-10_cd.bin / tema / sybase / powerj / h.z / SEARCH.H < prev    next >
C/C++ Source or Header  |  1996-11-06  |  757b  |  29 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. #if !defined(_ENABLE_AUTODEPEND)
  9.   #pragma read_only_file;
  10. #endif
  11. #ifdef __cplusplus
  12. extern "C" {
  13. #endif
  14.  
  15. #ifndef _COMDEF_H_INCLUDED
  16.  #include <_comdef.h>
  17. #endif
  18.  
  19. _WCRTLINK extern void *lfind( const void *__key, const void *__base, 
  20.                   unsigned *__num, unsigned __width, 
  21.                   int (* __compare)(const void *, const void *) );
  22. _WCRTLINK extern void *lsearch( const void *__key, void *__base, 
  23.                 unsigned *__num, unsigned __width, 
  24.                 int (* __compare)(const void *, const void *) );
  25. #ifdef __cplusplus
  26. };
  27. #endif
  28. #endif
  29.