projects
/
m6w6
/
libmemcached
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
|
github
history
|
raw
|
HEAD
Const issue for C++ include.
[m6w6/libmemcached]
/
memcached
/
hash.h
1
#ifndef HASH_H
2
#define HASH_H
3
4
#ifdef __cplusplus
5
extern
"C"
{
6
#endif
7
8
uint32_t
hash
(
const void
*
key
,
size_t
length
,
const uint32_t
initval
);
9
10
#ifdef __cplusplus
11
}
12
#endif
13
14
#endif
/* HASH_H */
15