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

Function edge_add

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

Source from the content-addressed store, hash-verified

149}
150
151static void edge_add(Graph g, Edge e)
152{
153 if (g->last_edge)
154 g->last_edge->next = e;
155 else
156 g->edges = e;
157 g->last_edge = e;
158}
159
160static void adj_edge_add(Node from, Edge e, Node to)
161{

Callers 2

jgf_parseFunction · 0.85
jsonml_elementFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected