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

Function insertAfter

eval/CIPO_evaluation/common/gason.cpp:141–147  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

139}
140
141static inline JsonNode *insertAfter(JsonNode *tail, JsonNode *node) {
142 if (!tail)
143 return node->next = node;
144 node->next = tail->next;
145 tail->next = node;
146 return node;
147}
148
149static inline JsonValue listToValue(JsonTag tag, JsonNode *tail) {
150 if (tail) {

Callers 1

jsonParseFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected