// @(#)root/zip:$Id$ // Author: Sergey Linev 7 July 2014 /************************************************************************* * Copyright (C) 1995-2014, Rene Brun and Fons Rademakers. * * All rights reserved. * * * * For the licensing terms see $ROOTSYS/LICENSE. * * For the list of contributors see $ROOTSYS/README/CREDITS. * *************************************************************************/ #include "RZip.h" #include "zlib.h" unsigned long R__crc32(unsigned long crc, const unsigned char* buf, unsigned int len) { return crc32(crc, buf, len); }