MCPcopy Create free account
hub / github.com/apache/nuttx / skip_space

Function skip_space

tools/cfgdefine.c:93–97  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

91/* Skip over any spaces */
92
93static char *skip_space(char *ptr)
94{
95 while (*ptr && isspace((int)*ptr)) ptr++;
96 return ptr;
97}
98
99/* Find the end of a variable string */
100

Callers 2

read_lineFunction · 0.70
parse_lineFunction · 0.70

Calls 1

isspaceFunction · 0.50

Tested by

no test coverage detected