1#ifndef __crc32cr_table_h__
2#define __crc32cr_table_h__
3
4#ifdef HAVE_CONFIG_H
5# include "config.h"
6#endif
7
8#include <sys/types.h>
9
10#if defined HAVE_STDINT_H
11# include <stdint.h>
12#elif defined HAVE_INTTYPES_H
13# include <inttypes.h>
14#endif
15
16uint32_t generate_crc32c(const char *string, size_t length);
17
18#endif
19