File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / lighttpd / src / crc32.h
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Mon Oct 14 10:32:47 2013 UTC (10 years, 8 months ago) by misho
Branches: lighttpd, MAIN
CVS tags: v1_4_35p0, v1_4_35, v1_4_33, HEAD
1.4.33

    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

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>