repo.or.cz
/
lighttpd.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[mod_status] page refresh option (fixes #2170)
[lighttpd.git]
/
src
/
crc32.h
blob
d38f4c274907103e76124d6b8098cc7754377bb4
1
#ifndef __crc32cr_table_h__
2
#define __crc32cr_table_h__
3
#include
"first.h"
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
13
uint32_t
generate_crc32c
(
const char
*
string
,
size_t
length
);
14
15
#endif