re/include/re_crc32.h
Alfred E. Heggestad 6648fd2393 update splash
2010-11-03 11:34:14 +00:00

12 lines
207 B
C

/**
* @file re_crc32.h Interface to CRC-32 functions
*
* Copyright (C) 2010 Creytiv.com
*/
#ifdef USE_ZLIB
#include <zlib.h>
#else
uint32_t crc32(uint32_t crc, const void *buf, uint32_t size);
#endif