mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-12 12:11:34 -06:00
13 lines
181 B
C
Executable File
13 lines
181 B
C
Executable File
// SortUtils.h
|
|
|
|
#pragma once
|
|
|
|
#ifndef __SORTUTLS_H
|
|
#define __SORTUTLS_H
|
|
|
|
#include "Common/String.h"
|
|
|
|
void SortStringsToIndices(UStringVector &strings, CIntVector &indices);
|
|
|
|
#endif
|