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

Function str_upper

Sming/System/m_printf.cpp:36–41  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

34}
35
36static void str_upper(char* s)
37{
38 for(; *s != '\0'; ++s) {
39 *s = to_upper(*s);
40 }
41}
42
43static int skip_atoi(const char **s)
44{

Callers 1

m_vsnprintfFunction · 0.85

Calls 1

to_upperFunction · 0.85

Tested by

no test coverage detected