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

Method upper

src/common/classes/fb_string.cpp:338–347  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

336#endif // WIN_NT
337
338 void AbstractString::upper()
339 {
340#ifdef WIN_NT
341 CharUpperBuffA(modify(), length());
342#else // WIN_NT
343 for (pointer p = modify(); *p; p++) {
344 *p = toupper(*p);
345 }
346#endif // WIN_NT
347 }
348
349 void AbstractString::lower()
350 {

Callers 15

gbakFunction · 0.80
acceptMethod · 0.80
setCursorMethod · 0.80
ArithmeticNodeMethod · 0.80
MAKE_system_privilegeFunction · 0.80
nbackupFunction · 0.80
get_switchesFunction · 0.80
parseBooleanMethod · 0.80
ServiceMethod · 0.80
makeHashKeyMethod · 0.80
preprocessMethod · 0.80
checkPrivilegesMethod · 0.80

Calls 1

lengthFunction · 0.50

Tested by 1

testFunction · 0.64