James Kuszmaul | 82f6c04 | 2021-01-17 11:30:16 -0800 | [diff] [blame^] | 1 | /** |
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 | ||||
11 | uint32_t crc32(uint32_t crc, const void *buf, uint32_t size); | ||||
12 | #endif |