MCPcopy Create free account
hub / github.com/IBM/Project_CodeNet / edge_info

Function edge_info

tools/json-graph/src/jgf2spt.c:56–67  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

54}
55
56static int edge_info(Edge e)
57{
58 fprintf(stderr, "edge ");
59 if (e->label)
60 show(stderr, e->label, 0);
61 fputc('[', stderr);
62 show(stderr, e->from->id, 0);
63 fputc(',', stderr);
64 show(stderr, e->to->id, 0);
65 fputs("]\n", stderr);
66 return 1;
67}
68
69/** Return true for a tree, false for anything else.
70*/

Callers

nothing calls this directly

Calls 1

showFunction · 0.85

Tested by

no test coverage detected