aboutsummaryrefslogtreecommitdiff
path: root/C/Sort.h
diff options
context:
space:
mode:
authorIgor Pavlov <87184205+ip7z@users.noreply.github.com>2025-07-05 00:00:00 +0000
committerIgor Pavlov <87184205+ip7z@users.noreply.github.com>2025-07-05 19:27:33 +0500
commit395149956d696e6e3099d8b76d797437f94a6942 (patch)
tree6ed5013a637078ae2dfdc4acf1ad93bf29cea356 /C/Sort.h
parente5431fa6f5505e385c6f9367260717e9c47dc2ee (diff)
download7zip-25.00.tar.gz
7zip-25.00.tar.bz2
7zip-25.00.zip
25.0025.00
Diffstat (limited to 'C/Sort.h')
-rw-r--r--C/Sort.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/C/Sort.h b/C/Sort.h
index 1817b65..de5a4e8 100644
--- a/C/Sort.h
+++ b/C/Sort.h
@@ -1,5 +1,5 @@
1/* Sort.h -- Sort functions 1/* Sort.h -- Sort functions
22023-03-05 : Igor Pavlov : Public domain */ 2: Igor Pavlov : Public domain */
3 3
4#ifndef ZIP7_INC_SORT_H 4#ifndef ZIP7_INC_SORT_H
5#define ZIP7_INC_SORT_H 5#define ZIP7_INC_SORT_H
@@ -8,10 +8,7 @@
8 8
9EXTERN_C_BEGIN 9EXTERN_C_BEGIN
10 10
11void HeapSort(UInt32 *p, size_t size); 11void Z7_FASTCALL HeapSort(UInt32 *p, size_t size);
12void HeapSort64(UInt64 *p, size_t size);
13
14/* void HeapSortRef(UInt32 *p, UInt32 *vals, size_t size); */
15 12
16EXTERN_C_END 13EXTERN_C_END
17 14