MCPcopy Create free account
hub / github.com/DescentDevelopers/Descent3 / SkipInitialWhitespace

Function SkipInitialWhitespace

scripts/RudeAwakening.cpp:283–288  ·  view source on GitHub ↗

Returns a pointer to the first non-whitespace char in given string

Source from the content-addressed store, hash-verified

281
282// Returns a pointer to the first non-whitespace char in given string
283char *SkipInitialWhitespace(char *s) {
284 while ((*s) != '\0' && isspace(*s))
285 s++;
286
287 return (s);
288}
289
290// Read in the Messages
291int ReadMessageFile(const char *filename) {

Callers 1

ReadMessageFileFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected