MCPcopy Create free account
hub / github.com/ZDoom/Raze / ToLower

Method ToLower

source/common/utility/zstring.cpp:678–687  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

676}
677
678void FString::ToLower ()
679{
680 LockBuffer();
681 size_t max = Len();
682 for (size_t i = 0; i < max; ++i)
683 {
684 Chars[i] = (char)tolower(Chars[i]);
685 }
686 UnlockBuffer();
687}
688
689FString FString::MakeLower() const
690{

Callers 9

S_DefineSoundFunction · 0.45
ParseHardwareShaderMethod · 0.45
CCMDFunction · 0.45
ParseLanguageCSVMethod · 0.45
AddLocalizedVariantsMethod · 0.45
StringToLowerFunction · 0.45
VMDisassemblyDumperMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected