use size_t instead of unsigned int and char * instead of unsigned char *
git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-1.3.x@369 152afb58-edef-0310-8abb-c4023f1b3aa9svn/tags/lighttpd-1.3.14
parent
c65f4e0223
commit
8e67134b23
@ -1,6 +1,8 @@
|
||||
#ifndef __crc32cr_table_h__
|
||||
#define __crc32cr_table_h__
|
||||
|
||||
unsigned long generate_crc32c(unsigned char *string, unsigned int length);
|
||||
#include <sys/types.h>
|
||||
|
||||
unsigned long generate_crc32c(char *string, size_t length);
|
||||
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue