mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-07 13:15:04 -06:00
12 lines
241 B
C
Executable File
12 lines
241 B
C
Executable File
// SortUtils.h
|
|
|
|
#ifndef __SORTUTLS_H
|
|
#define __SORTUTLS_H
|
|
|
|
#include "Common/String.h"
|
|
|
|
void SortStringsToIndices(const UStringVector &strings, CIntVector &indices);
|
|
// void SortStrings(const UStringVector &src, UStringVector &dest);
|
|
|
|
#endif
|