MCPcopy Create free account
hub / github.com/Tencent/phxsql / lskip

Function lskip

phxcomm/configparser/inih-master/ini.cpp:36–40  ·  view source on GitHub ↗

Return pointer to first non-whitespace char in given string. */

Source from the content-addressed store, hash-verified

34
35/* Return pointer to first non-whitespace char in given string. */
36static char* lskip(const char* s) {
37 while (*s && isspace((unsigned char) (*s)))
38 s++;
39 return (char*) s;
40}
41
42/* Return pointer to first char (of chars) or inline comment in given string,
43 or pointer to null at end of string if neither found. Inline comment must

Callers 1

ini_parse_streamFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected