repo.or.cz
/
libdht.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
implement missing function in buffer.c
[libdht.git]
/
murmur3.h
blob
a1b302cc0382b4761e5ac0a249ed0c3f53749a81
1
/*
2
* based on code written by Austin Appleby and placed in the public domain
3
*/
4
5
#ifndef MURMUR3_H
6
#define MURMUR3_H
7
8
#include <stdint.h>
9
10
void
murmurhash3_x64_128
(
const void
*,
const int
,
const uint32_t
,
void
*);
11
12
#endif