blob: 06bbce20dbf4b2d9c69a5a6905416652a0f44ca2 [file] [log] [blame]
James Kuszmaul82f6c042021-01-17 11:30:16 -08001/**
2 * @file re_crc32.h Interface to CRC-32 functions
3 *
4 * Copyright (C) 2010 Creytiv.com
5 */
6
7
8#ifdef USE_ZLIB
9#include <zlib.h>
10#else
11uint32_t crc32(uint32_t crc, const void *buf, uint32_t size);
12#endif