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

Function engine_freeIOList

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

Source from the content-addressed store, hash-verified

68}
69
70void engine_freeIOList(char** strList) {
71 char** ptr = strList;
72 while (*ptr!=NULL) {
73 free(*ptr);
74 ptr++;
75 }
76 free(strList);
77}
78
79char** engine_buildParameterMap(const ParameterMap& params) {
80 char** out = (char**) malloc((params.size()*2+1)*sizeof(char*));

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected