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

Function freeComponentList

src_cpp/yaafe-python/yaafecore.cpp:84–92  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

82}
83
84void freeComponentList(char** strList) {
85 if (strList==NULL) return;
86 char** ptr = strList;
87 while (*ptr!=NULL) {
88 free(*ptr);
89 ptr++;
90 }
91 delete [] strList;
92}
93
94char* getOutputFormatDescription(char* id) {
95 const OutputFormat* proto = OutputFormat::get(id);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected