libdeflate/lib/adler32.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
206 B
C

/*
* adler32.h - Adler-32 checksum algorithm
*/
#ifndef _LIB_ADLER32_H
#define _LIB_ADLER32_H
#include "common_defs.h"
extern u32 adler32(const void *buffer, size_t size);
#endif /* _LIB_ADLER32_H */