| 802 | } |
| 803 | |
| 804 | size_t CaseConvertString(char *converted, size_t sizeConverted, const char *mixed, size_t lenMixed, enum CaseConversion conversion) { |
| 805 | CaseConverter *pCaseConv = ConverterForConversion(conversion); |
| 806 | if (!pCaseConv->Initialised()) |
| 807 | SetupConversions(conversion); |
| 808 | return pCaseConv->CaseConvertString(converted, sizeConverted, mixed, lenMixed); |
| 809 | } |
| 810 | |
| 811 | std::string CaseConvertString(const std::string &s, enum CaseConversion conversion) { |
| 812 | std::string retMapped(s.length() * maxExpansionCaseConversion, 0); |
nothing calls this directly
no test coverage detected