mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-14 10:11:38 -06:00
9.38
This commit is contained in:
committed by
Kornel Lesiński
parent
7e021179cd
commit
0713a3ab80
@@ -29,7 +29,7 @@ inline char *MyStpCpy(char *dest, const char *src)
|
||||
{
|
||||
for (;;)
|
||||
{
|
||||
Byte c = *src;
|
||||
char c = *src;
|
||||
*dest = c;
|
||||
if (c == 0)
|
||||
return dest;
|
||||
@@ -248,7 +248,7 @@ public:
|
||||
// int CompareNoCase(const char *s) const { return MyStringCompareNoCase(_chars, s); }
|
||||
// int CompareNoCase(const AString &s) const { return MyStringCompareNoCase(_chars, s._chars); }
|
||||
bool IsPrefixedBy(const char *s) const { return IsString1PrefixedByString2(_chars, s); }
|
||||
bool IsPrefixedBy_Ascii_NoCase(const char *s) const;
|
||||
bool IsPrefixedBy_Ascii_NoCase(const char *s) const throw();
|
||||
|
||||
int Find(char c) const { return FindCharPosInString(_chars, c); }
|
||||
int Find(char c, unsigned startIndex) const
|
||||
@@ -413,7 +413,7 @@ public:
|
||||
// int CompareNoCase(const wchar_t *s) const { return MyStringCompareNoCase(_chars, s); }
|
||||
// int CompareNoCase(const UString &s) const { return MyStringCompareNoCase(_chars, s._chars); }
|
||||
bool IsPrefixedBy(const wchar_t *s) const { return IsString1PrefixedByString2(_chars, s); };
|
||||
bool IsPrefixedBy_Ascii_NoCase(const char *s) const;
|
||||
bool IsPrefixedBy_Ascii_NoCase(const char *s) const throw();
|
||||
|
||||
int Find(wchar_t c) const { return FindCharPosInString(_chars, c); }
|
||||
int Find(wchar_t c, unsigned startIndex) const
|
||||
|
||||
Reference in New Issue
Block a user