mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-12 20:35:58 +03:00
9 lines
208 B
C++
9 lines
208 B
C++
#ifndef MODEL_M2_SORT_HPP
|
|
#define MODEL_M2_SORT_HPP
|
|
|
|
#include <cstdint>
|
|
|
|
void M2HeapSort(int32_t (*sortFunc)(uint32_t, uint32_t, const void*), uint32_t* indices, uint32_t count, const void* userArg);
|
|
|
|
#endif
|