diff --git a/convert/text.h b/convert/text.h index 8fbb98f..2959ef2 100644 --- a/convert/text.h +++ b/convert/text.h @@ -130,6 +130,12 @@ bool EqualNoCase(const StringType1 & str1, const StringType2 & str2) } +template +bool EqualNoCasep(const StringType1 * str1, const StringType2 * str2) +{ + return EqualNoCase(str1, str2); +} + template int CompareNoCase(const StringType1 * str1, const StringType2 * str2) @@ -154,6 +160,12 @@ int CompareNoCase(const StringType1 & str1, const StringType2 & str2) } +template +int CompareNoCasep(const StringType1 * str1, const StringType2 * str2) +{ + return CompareNoCase(str1, str2); +} + template bool EqualNoCase(const StringType1 * str1_begin, const StringType1 * str1_end, const StringType2 * str2)