MCPcopy Index your code
hub / github.com/IBM/Project_CodeNet / node_add

Function node_add

tools/json-graph/src/jgflib.c:124–131  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

122}
123
124static void node_add(Graph g, Node n)
125{
126 if (g->last_node)
127 g->last_node->next = n;
128 else
129 g->nodes = n;
130 g->last_node = n;
131}
132
133Node node_find(Graph g, jsmntok_t *id)
134{

Callers 2

jgf_parseFunction · 0.85
jsonml_elementFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected