MCPcopy Create free account
hub / github.com/cxasm/notepad-- / CaseConvertString

Function CaseConvertString

src/qscint/scintilla/src/CaseConvert.cpp:804–809  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

802}
803
804size_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
811std::string CaseConvertString(const std::string &s, enum CaseConversion conversion) {
812 std::string retMapped(s.length() * maxExpansionCaseConversion, 0);

Callers

nothing calls this directly

Calls 6

ConverterForConversionFunction · 0.85
SetupConversionsFunction · 0.85
CaseConvertStringMethod · 0.80
resizeMethod · 0.80
InitialisedMethod · 0.45
lengthMethod · 0.45

Tested by

no test coverage detected