home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_09_06 / 9n06054a < prev    next >
Text File  |  1991-02-27  |  228b  |  16 lines

  1. //      HSort.Hpp  V.2.0 - 2/27/91
  2. //
  3. //    Turbo C++ V.1.0
  4. //
  5. //    Michael Kelly - Author
  6. //
  7.  
  8. #if !defined(HSORT_HPP)
  9. #define HSORT_HPP
  10.  
  11. #include "thing.hpp"
  12.  
  13. void heapsort( size_t num_things, Thing *array );
  14.  
  15. #endif
  16.