MCPcopy Create free account
hub / github.com/SmingHub/Sming / toUpperCase

Method toUpperCase

Sming/Wiring/WString.cpp:897–903  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

895}
896
897void String::toUpperCase(void)
898{
899 auto buf = buffer();
900 for(unsigned len = length(); len > 0; --len, ++buf) {
901 *buf = toupper(*buf);
902 }
903}
904
905void String::trim(const char* set)
906{

Callers 15

rFunction · 0.80
FbFunction · 0.80
jquery.jsFile · 0.80
rFunction · 0.80
FbFunction · 0.80
jquery.jsFile · 0.80
rFunction · 0.80
FbFunction · 0.80
jquery.jsFile · 0.80
executeMethod · 0.80
executeMethod · 0.80
tFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected