MCPcopy Create free account
hub / github.com/FirebirdSQL/firebird / lower

Method lower

src/common/classes/fb_string.cpp:349–358  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

347 }
348
349 void AbstractString::lower()
350 {
351#ifdef WIN_NT
352 CharLowerBuffA(modify(), length());
353#else // WIN_NT
354 for (pointer p = modify(); *p; p++) {
355 *p = tolower(*p);
356 }
357#endif // WIN_NT
358 }
359
360 void AbstractString::baseTrim(const TrimType whereTrim, const_pointer toTrim)
361 {

Callers 10

INET_analyzeFunction · 0.80
XNET_analyzeFunction · 0.80
parseMethod · 0.80
prepareSwitchFunction · 0.80
initAttachmentFunction · 0.80
evlEncryptDecryptFunction · 0.80
evlRsaEncryptDecryptFunction · 0.80
evlRsaSignFunction · 0.80
evlRsaVerifyFunction · 0.80
testFunction · 0.80

Calls 1

lengthFunction · 0.50

Tested by 1

testFunction · 0.64