| 132 | } |
| 133 | |
| 134 | void dataflow_node_freeParams(const char** params) |
| 135 | { |
| 136 | free(params); |
| 137 | } |
| 138 | |
| 139 | void** buildNodeList(const DataFlow::NodeList& nodes) { |
| 140 | void** res = (void**) malloc((nodes.size()+1)*sizeof(void*)); |
nothing calls this directly
no outgoing calls
no test coverage detected