home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / cslio205.zip / INCLUDE / CSSEARCH.H < prev    next >
Text File  |  1997-01-21  |  759b  |  22 lines

  1. /***********************************************************************
  2.  
  3.                       CSDB Library, Free Evaluation Version 2.0.5 
  4.                                        Release: January 22th 1997 
  5.  
  6.        Binary search through an array.
  7.  
  8.                                            Copyright(c) 1994-1997 
  9.                                                           ComBits 
  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.