home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 15 / 15.iso / s / s038 / 10.ddi / 017.LIF / SEARCH.H < prev    next >
Encoding:
C/C++ Source or Header  |  1992-07-02  |  530 b   |  22 lines

  1. /* search.h - searching and sorting function prototypes
  2.  * $Version: 1.1 $
  3.  * Copyright (c) 1988-91 Intel Corporation, ALL RIGHTS RESERVED.
  4.  */
  5.  
  6. #ifndef _searchh
  7. #define _searchh
  8. /*lint -library */
  9.  
  10. #pragma fixedparams("lfind", "lsearch")
  11.  
  12. /*
  13.  * Function prototypes:
  14.  */
  15. void *lfind(const void *, const void *, unsigned *, unsigned, 
  16.         int (*)(const void *, const void *));
  17. void *lsearch(const void *, void *, unsigned *, unsigned, 
  18.         int (*)(const void *, const void *));
  19.  
  20. #endif /* _searchh */
  21.  
  22.