Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/SmingHub/Sming
/ skip_atoi
Function
skip_atoi
Sming/System/m_printf.cpp:43–49 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
41
}
42
43
static int skip_atoi(const char **s)
44
{
45
int i = 0;
46
while (is_digit(**s))
47
i = i * 10 + *((*s)++) -
'0'
;
48
return i;
49
}
50
51
nputs_callback_t m_setPuts(nputs_callback_t callback)
52
{
Callers
1
m_vsnprintf
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected