MCPcopy Create free account
hub / github.com/Yaafe/Yaafe / engine_freeIOInfos

Function engine_freeIOInfos

src_cpp/yaafe-python/yaafecoreEngine.cpp:123–130  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

121}
122
123void 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
132void engine_input_write(void* engine, char* input, double* data, int size, int nbtokens) {
133 Engine* e = static_cast<Engine*>(engine);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected