MCPcopy Create free account
hub / github.com/ddnet/ddnet / str_skip_whitespaces

Function str_skip_whitespaces

src/base/str.cpp:340–345  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

338}
339
340char *str_skip_whitespaces(char *str)
341{
342 while(*str && str_isspace(*str))
343 str++;
344 return str;
345}
346
347const char *str_skip_whitespaces_const(const char *str)
348{

Callers 4

WhisperMethod · 0.85
ParseStartMethod · 0.85
ParseArgsMethod · 0.85
TESTFunction · 0.85

Calls 1

str_isspaceFunction · 0.85

Tested by 1

TESTFunction · 0.68