mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-10 02:07:07 -06:00
12 lines
238 B
C
Executable File
12 lines
238 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
|