blob: 7a7173e417fd3b993b546532d06770dc03500dba [file] [log] [blame] [edit]
#include "miniz.h"
#include <iostream>
#include "caffe2/serialize/crc_alt.h"
extern "C" {
// See: miniz.h
#if defined(USE_EXTERNAL_MZCRC)
mz_ulong mz_crc32(mz_ulong crc, const mz_uint8* ptr, size_t buf_len) {
auto z = crc32_fast(ptr, buf_len, crc);
return z;
};
#endif
}