Return to crc32.h CVS log | Up to [ELWIX - Embedded LightWeight unIX -] / embedaddon / lighttpd / src |
1.1 misho 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: 16: uint32_t generate_crc32c(char *string, size_t length); 17: 18: #endif