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, 24 insertions, 0 deletions
diff --git a/7zip/Compress/Rar29/Original/strfn.hpp b/7zip/Compress/Rar29/Original/strfn.hpp
new file mode 100755
index 00000000..57813e52
--- /dev/null
+++ b/7zip/Compress/Rar29/Original/strfn.hpp
@@ -0,0 +1,24 @@
+#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