Initial version.

This commit is contained in:
Igor Sysoev
2017-01-17 20:00:00 +03:00
commit 16cbf3c076
235 changed files with 56359 additions and 0 deletions

15
src/nxt_murmur_hash.h Normal file
View File

@@ -0,0 +1,15 @@
/*
* Copyright (C) Igor Sysoev
* Copyright (C) NGINX, Inc.
*/
#ifndef _NXT_MURMUR_HASH_H_INCLUDED_
#define _NXT_MURMUR_HASH_H_INCLUDED_
NXT_EXPORT uint32_t nxt_murmur_hash2(const void *data, size_t len);
NXT_EXPORT uint32_t nxt_murmur_hash2_uint32(const void *data);
#endif /* _NXT_MURMUR_HASH_H_INCLUDED_ */