MCPcopy Create free account
hub / github.com/acl-dev/acl / skip_atoi

Function skip_atoi

lib_acl/src/stdlib/acl_vsprintf.c:138–145  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

136}
137
138static int skip_atoi(const char **s)
139{
140 int i=0;
141
142 while (isdigit((int)(**s)))
143 i = i*10 + *((*s)++) - '0';
144 return i;
145}
146
147/**
148* vsnprintf - Format a string and place it in a buffer

Callers 1

acl_vsnprintfFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…