home *** CD-ROM | disk | FTP | other *** search
/ Resource for Source: C/C++ / Resource for Source - C-C++.iso / misc_src / cslib16b / include / cssearch.h < prev    next >
Encoding:
Text File  |  1995-11-01  |  689 b   |  22 lines

  1. /***********************************************************************
  2.  
  3.                                       CSDB Library, Version 1.6.b 
  4.                                          Released: March 2nd 1995 
  5.  
  6.        Binary search through an array.
  7.  
  8.                                            Copyright(c) 1994,1995 
  9.                                                            Combis 
  10.                                                   The Netherlands 
  11. ***********************************************************************/
  12.  
  13. void huge *bin_search(void *s,
  14.          void *base,
  15.          long numrec,
  16.          unsigned len,
  17.          int (*fun)(const void * p,const void * q),
  18.          int &found);
  19.  
  20.  
  21.  
  22.