home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / vol_300 / 308_01 / bfind.h < prev    next >
Text File  |  1990-06-17  |  515b  |  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.