projects
/
psmb.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
add hash64 function
[psmb.git]
/
src
/
hash64.h
1
#ifndef _HASH64_H
2
3
#include <stdlib.h>
4
#include <stdint.h>
5
6
uint64_t hash64(void *data, size_t size);
7
8
#endif