nginx/src/core/ngx_murmurhash.h

20 lines
286 B
C
Raw Normal View History

2011-04-15 05:59:24 -05:00
/*
* Copyright (C) Igor Sysoev
2012-01-18 09:07:43 -06:00
* Copyright (C) Nginx, Inc.
2011-04-15 05:59:24 -05:00
*/
#ifndef _NGX_MURMURHASH_H_INCLUDED_
#define _NGX_MURMURHASH_H_INCLUDED_
#include <ngx_config.h>
#include <ngx_core.h>
uint32_t ngx_murmur_hash2(u_char *data, size_t len);
2012-04-05 14:49:34 -05:00
#endif /* _NGX_MURMURHASH_H_INCLUDED_ */