MCPcopy Create free account
hub / github.com/OpenDriveLab/OpenLane / skip

Function skip

eval/LANE_evaluation/lane2d/src/cJSON.c:427–432  ·  view source on GitHub ↗

Utility to jump whitespace and cr/lf */

Source from the content-addressed store, hash-verified

425
426/* Utility to jump whitespace and cr/lf */
427static const char *skip(const char *in)
428{
429 while (in && *in && (unsigned char) *in <= 32)
430 in++;
431 return in;
432}
433
434/* Parse an object - create a new root, and populate. */
435cJSON *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