| 17 | /* Simple graph data structure using pointers. */ |
| 18 | typedef struct Attr_S *Attr; |
| 19 | typedef struct Edge_S *Edge; |
| 20 | typedef struct Node_S *Node; |
| 21 | typedef struct Graph_S *Graph; |
| 22 | enum { undirected, directed }; |
nothing calls this directly
no outgoing calls
no test coverage detected