mirror of
https://github.com/cuberite/libdeflate.git
synced 2025-08-04 10:16:44 -04:00

* 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
13 lines
219 B
C
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 */
|