libdeflate/lib/crc32.h
Eric Biggers f2c3a5b4e9 Various reorganization and cleanups
* Bring in common headers and program code from xpack project
* Move program code to programs/
* Move library code to lib/
* GNU89 and MSVC2010 compatibility
* Other changes
2016-05-21 15:38:15 -05:00

13 lines
219 B
C

/*
* crc32.h - CRC-32 checksum algorithm for the gzip format
*/
#ifndef _LIB_CRC32_H
#define _LIB_CRC32_H
#include "common_defs.h"
extern u32 crc32_gzip(const void *buffer, size_t size);
#endif /* _LIB_CRC32_H */