| 19 | typedef struct Edge_S *Edge; |
| 20 | typedef struct Node_S *Node; |
| 21 | typedef struct Graph_S *Graph; |
| 22 | enum { undirected, directed }; |
| 23 | |
| 24 | /* An atribute is a key:value pair of token pointers. */ |
nothing calls this directly
no outgoing calls
no test coverage detected