mirror of
https://github.com/love2d/love-android.git
synced 2026-08-16 16:21:33 +02:00
12 lines
184 B
C
12 lines
184 B
C
/* Sort.h */
|
|
|
|
#ifndef __7Z_Sort_H
|
|
#define __7Z_Sort_H
|
|
|
|
#include "Types.h"
|
|
|
|
void HeapSort(UInt32 *p, UInt32 size);
|
|
/* void HeapSortRef(UInt32 *p, UInt32 *vals, UInt32 size); */
|
|
|
|
#endif
|