[core] fdevent_libev: workaround compiler warning
[lighttpd.git] / src / crc32.h
blobd38f4c274907103e76124d6b8098cc7754377bb4
1 #ifndef __crc32cr_table_h__
2 #define __crc32cr_table_h__
3 #include "first.h"
5 #include <sys/types.h>
7 #if defined HAVE_STDINT_H
8 # include <stdint.h>
9 #elif defined HAVE_INTTYPES_H
10 # include <inttypes.h>
11 #endif
13 uint32_t generate_crc32c(const char *string, size_t length);
15 #endif