| 92 | } |
| 93 | |
| 94 | char* getOutputFormatDescription(char* id) { |
| 95 | const OutputFormat* proto = OutputFormat::get(id); |
| 96 | if (!proto) |
| 97 | return NULL; |
| 98 | return strdup(proto->getDescription().c_str()); |
| 99 | } |
| 100 | |
| 101 | void freeOutputFormatDescription(char* desc) |
| 102 | { |
nothing calls this directly
no test coverage detected