| 82 | } |
| 83 | |
| 84 | void 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 | |
| 94 | char* getOutputFormatDescription(char* id) { |
| 95 | const OutputFormat* proto = OutputFormat::get(id); |
nothing calls this directly
no outgoing calls
no test coverage detected