| 61 | } |
| 62 | |
| 63 | const char* CompressTypeToCStr(CompressType type) { |
| 64 | if (type == COMPRESS_TYPE_NONE) { |
| 65 | return "none"; |
| 66 | } |
| 67 | const CompressHandler* handler = FindCompressHandler(type); |
| 68 | return (handler != NULL ? handler->name : "unknown"); |
| 69 | } |
| 70 | |
| 71 | void ListCompressHandler(std::vector<CompressHandler>* vec) { |
| 72 | vec->clear(); |
no test coverage detected