MCPcopy Create free account
hub / github.com/OpenSIPS/opensips / skip

Function skip

lib/cJSON.c:875–883  ·  view source on GitHub ↗

Utility to jump whitespace and cr/lf */

Source from the content-addressed store, hash-verified

873
874/* Utility to jump whitespace and cr/lf */
875static const unsigned char *skip(const unsigned char *in)
876{
877 while (in && *in && (*in <= 32))
878 {
879 in++;
880 }
881
882 return in;
883}
884
885/* Parse an object - create a new root, and populate. */
886cJSON *cJSON_ParseWithOpts(const char *value, const char **return_parse_end, cjbool require_null_terminated)

Callers 3

cJSON_ParseWithOptsFunction · 0.70
parse_arrayFunction · 0.70
parse_objectFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected