| 121 | } |
| 122 | |
| 123 | void engine_freeIOInfos(struct IOInfo* i) { |
| 124 | char** ptr = i->parameters; |
| 125 | while (*ptr!=NULL) { |
| 126 | free(*ptr); |
| 127 | ptr++; |
| 128 | } |
| 129 | free(i); |
| 130 | } |
| 131 | |
| 132 | void engine_input_write(void* engine, char* input, double* data, int size, int nbtokens) { |
| 133 | Engine* e = static_cast<Engine*>(engine); |
nothing calls this directly
no outgoing calls
no test coverage detected