2005-02-20 14:27:00 +00:00
|
|
|
#ifndef __crc32cr_table_h__
|
|
|
|
#define __crc32cr_table_h__
|
|
|
|
|
2005-09-29 13:02:50 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2005-06-05 11:59:33 +00:00
|
|
|
#include <sys/types.h>
|
2005-09-29 13:02:50 +00:00
|
|
|
|
|
|
|
#if defined HAVE_STDINT_H
|
2005-09-26 12:26:37 +00:00
|
|
|
#include <stdint.h>
|
2005-09-30 17:27:23 +00:00
|
|
|
#elif defined HAVE_INTTYPES_H
|
2005-09-29 13:02:50 +00:00
|
|
|
#include <inttypes.h>
|
|
|
|
#endif
|
2005-06-05 11:59:33 +00:00
|
|
|
|
2005-09-26 12:26:37 +00:00
|
|
|
uint32_t generate_crc32c(char *string, size_t length);
|
2005-02-20 14:27:00 +00:00
|
|
|
|
|
|
|
#endif
|