|
|
1.1 misho 1: #ifndef __crc32cr_table_h__
2: #define __crc32cr_table_h__
1.1.1.2 ! misho 3: #include "first.h"
1.1 misho 4:
5: #include <sys/types.h>
6:
7: #if defined HAVE_STDINT_H
8: # include <stdint.h>
9: #elif defined HAVE_INTTYPES_H
10: # include <inttypes.h>
11: #endif
12:
1.1.1.2 ! misho 13: uint32_t generate_crc32c(const char *string, size_t length);
1.1 misho 14:
15: #endif