Team Fortress 2 Source Code as on 22/4/2020
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
317 B

  1. /* Sort.h -- Sort functions
  2. 2014-04-05 : Igor Pavlov : Public domain */
  3. #ifndef __7Z_SORT_H
  4. #define __7Z_SORT_H
  5. #include "7zTypes.h"
  6. EXTERN_C_BEGIN
  7. void HeapSort(UInt32 *p, size_t size);
  8. void HeapSort64(UInt64 *p, size_t size);
  9. /* void HeapSortRef(UInt32 *p, UInt32 *vals, size_t size); */
  10. EXTERN_C_END
  11. #endif