MCPcopy Index your code
hub / github.com/armink/struct2json / skip

Function skip

struct2json/src/cJSON.c:321–321  ·  view source on GitHub ↗

Utility to jump whitespace and cr/lf */

Source from the content-addressed store, hash-verified

319
320/* Utility to jump whitespace and cr/lf */
321static const char *skip(const char *in) {while (in && *in && (unsigned char)*in<=32) in++; return in;}
322
323/* Parse an object - create a new root, and populate. */
324cJSON *cJSON_ParseWithOpts(const char *value,const char **return_parse_end,int require_null_terminated)

Callers 3

cJSON_ParseWithOptsFunction · 0.85
parse_arrayFunction · 0.85
parse_objectFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected