MCPcopy Create free account
hub / github.com/cppla/ServerStatus / str_skip_to_whitespace

Function str_skip_to_whitespace

server/src/system.c:1630–1635  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1628}
1629
1630char *str_skip_to_whitespace(char *str)
1631{
1632 while(*str && (*str != ' ' && *str != '\t' && *str != '\n'))
1633 str++;
1634 return str;
1635}
1636
1637char *str_skip_whitespaces(char *str)
1638{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected