MCPcopy Create free account
hub / github.com/Bwar/CJsonObject / skip

Function skip

cJSON.c:421–426  ·  view source on GitHub ↗

Utility to jump whitespace and cr/lf */

Source from the content-addressed store, hash-verified

419
420/* Utility to jump whitespace and cr/lf */
421static const char *skip(const char *in)
422{
423 while (in && *in && (unsigned char) *in <= 32)
424 in++;
425 return in;
426}
427
428/* Parse an object - create a new root, and populate. */
429cJSON *cJSON_Parse(const char *value, const char **ep)

Callers 3

cJSON_ParseFunction · 0.85
parse_arrayFunction · 0.85
parse_objectFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected