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.hpp < prev    next >
C/C++ Source or Header  |  1990-09-20  |  841b  |  32 lines

  1.  
  2. /*
  3.     HEADER          CUG308;
  4.     TITLE:          Binary List search header;
  5.     DATE:           9/8/90;
  6.     VERSION:        1.0;
  7.     FILENAME:       BFIND.HPP;
  8.     COMPILER:       Borland C++ V.1.0;
  9.     REQUIRES:    LIST.CPP, LIST.HPP, BFIND.CPP;
  10.     SEE-ALSO:       BFIND.CPP, LIST.CPP, LIST.HPP;
  11.  
  12.     AUTHOR:         Michael Kelly
  13.                     254 Gold St. Boston, MA 02127
  14.             Copyright 1990;
  15.  
  16.     COPYRIGHT:    This code may not be commercially distributed
  17.             without prior arrangement with the author.  It
  18.             may be used by programmers, without royalty, for
  19.             their personal programs and for "one of a kind"
  20.             or "custom" applications, provided that said
  21.             programmers assume all liability concerning
  22.             same.
  23. */
  24.  
  25. #if !defined(BFIND_HPP)
  26. #define BFIND_HPP
  27. #include "baselist.hpp"
  28.  
  29. Boolean bfind(BaseList *list, void *item);
  30. #endif
  31.  
  32.