9 lines
163 B
C
9 lines
163 B
C
/**
|
|
* @file re_crc32.h Interface to CRC-32 functions
|
|
*
|
|
* Copyright (C) 2010 Creytiv.com
|
|
*/
|
|
|
|
|
|
uint32_t re_crc32(uint32_t crc, const void *buf, uint32_t size);
|