Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
340
char *str_skip_whitespaces(char *str)
341
{
342
while(*str && str_isspace(*str))
343
str++;
344
return str;
345
}
346
347
const char *str_skip_whitespaces_const(const char *str)
348
{
Callers
4
Whisper
Method · 0.85
ParseStart
Method · 0.85
ParseArgs
Method · 0.85
TEST
Function · 0.85
Calls
1
str_isspace
Function · 0.85
Tested by
1
TEST
Function · 0.68