mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-11 02:07:09 -06:00
19 lines
385 B
C++
Executable File
19 lines
385 B
C++
Executable File
// Archive/Common/ItemNameUtils.h
|
|
|
|
#ifndef __ARCHIVE_ITEMNAMEUTILS_H
|
|
#define __ARCHIVE_ITEMNAMEUTILS_H
|
|
|
|
#include "../../../Common/String.h"
|
|
|
|
namespace NArchive {
|
|
namespace NItemName {
|
|
|
|
UString MakeLegalName(const UString &name);
|
|
UString GetOSName(const UString &name);
|
|
UString GetOSName2(const UString &name);
|
|
bool HasTailSlash(const AString &name, UINT codePage);
|
|
|
|
}}
|
|
|
|
#endif
|