| 65 | } |
| 66 | |
| 67 | void free_dataflow_stringify(char* buf) |
| 68 | { |
| 69 | if (buf != NULL) { |
| 70 | free(buf); |
| 71 | buf = NULL; |
| 72 | } |
| 73 | } |
| 74 | |
| 75 | void dataflow_dumpdot(void* dataflow, char* filename) |
| 76 | { |
nothing calls this directly
no outgoing calls
no test coverage detected