Sort.h 184 B

123456789101112
  1. /* Sort.h */
  2. #ifndef __7Z_Sort_H
  3. #define __7Z_Sort_H
  4. #include "Types.h"
  5. void HeapSort(UInt32 *p, UInt32 size);
  6. /* void HeapSortRef(UInt32 *p, UInt32 *vals, UInt32 size); */
  7. #endif