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

github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '7zip/Compress/Rar29/Original/strfn.hpp')
-rwxr-xr-x7zip/Compress/Rar29/Original/strfn.hpp24
1 files changed, 0 insertions, 24 deletions
diff --git a/7zip/Compress/Rar29/Original/strfn.hpp b/7zip/Compress/Rar29/Original/strfn.hpp
deleted file mode 100755
index 57813e52..00000000
--- a/7zip/Compress/Rar29/Original/strfn.hpp
+++ /dev/null
@@ -1,24 +0,0 @@
-#ifndef _RAR_STRFN_
-#define _RAR_STRFN_
-
-const char *NullToEmpty(const char *Str);
-const wchar *NullToEmpty(const wchar *Str);
-char *IntNameToExt(const char *Name);
-void ExtToInt(const char *Src,char *Dest);
-void IntToExt(const char *Src,char *Dest);
-char* strlower(char *Str);
-char* strupper(char *Str);
-int stricomp(const char *Str1,const char *Str2);
-int strnicomp(const char *Str1,const char *Str2,int N);
-char* RemoveEOL(char *Str);
-char* RemoveLF(char *Str);
-unsigned int loctolower(byte ch);
-unsigned int loctoupper(byte ch);
-
-
-
-bool LowAscii(const char *Str);
-bool LowAscii(const wchar *Str);
-
-
-#endif