Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ItemNameUtils.h « Common « Archive « 7zip - github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 90dcba5be631bfcf27ac8d2186152b5c262f334f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// 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