home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Interactive Guide / c-cplusplus-interactive-guide.iso / c_ref / csource5 / 308_01 / bfind.h < prev    next >
Encoding:
C/C++ Source or Header  |  1990-06-18  |  515 b   |  27 lines

  1.  
  2.  
  3. /*
  4.     HEADER:         CUG308;
  5.     TITLE:          binary search header file;
  6.  
  7.     DATE:           5/6/90;
  8.     VERSION:        2.01;
  9.     FILENAME:       BFIND.H;
  10.     SEE-ALSO:       BFIND.C, LIST.DOC, LIST.H;
  11.  
  12.     REQUIREMENTS:   LIST.OBJ V. 2.0 or higher, LIST.H, BFIND.C;
  13.  
  14.     AUTHOR:         Michael Kelly
  15.             254 Gold St. Boston Ma. 02127;
  16.     COPYRIGHT:    May be used freely if authorship is acknowledged;
  17. */
  18.  
  19.  
  20. #if !defined(BFIND_H)
  21. #define BFIND_H
  22. #include "list.h"
  23.  
  24. int bfind(List *list, void *item);
  25. #endif
  26.  
  27.