MCPcopy Create free account
hub / github.com/acl-dev/acl / zip_reset

Method zip_reset

lib_acl_cpp/src/stdlib/zlib_stream.cpp:612–623  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

610}
611
612bool zlib_stream::zip_reset()
613{
614#ifdef HAS_ZLIB
615# if defined(ACL_CPP_DLL) || defined(HAS_ZLIB_DLL)
616 if (__deflateEnd == NULL) {
617 logger_warn("__deflateEnd null, zlib maybe not loaded yet");
618 return false;
619 }
620# endif
621#endif
622 return __deflateEnd(zstream_) == Z_OK;
623}
624
625unsigned zlib_stream::crc32_update(unsigned n, const void* buf, size_t dlen)
626{

Callers 1

test_zip_streamFunction · 0.80

Calls

no outgoing calls

Tested by 1

test_zip_streamFunction · 0.64