MCPcopy Create free account
hub / github.com/CodingGay/BlackDex / ErrorCodeString

Method ErrorCodeString

Bcore/src/main/cpp/ziparchive/zip_writer.cc:73–78  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

71};
72
73const char* ZipWriter::ErrorCodeString(int32_t error_code) {
74 if (error_code < 0 && (-error_code) < static_cast<int32_t>(arraysize(sErrorCodes))) {
75 return sErrorCodes[-error_code];
76 }
77 return nullptr;
78}
79
80static void DeleteZStream(z_stream* stream) {
81 deflateEnd(stream);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected