diff options
author | Joseph Werle <joseph.werle@gmail.com> | 2014-05-05 08:57:14 -0400 |
---|---|---|
committer | Joseph Werle <joseph.werle@gmail.com> | 2014-05-05 08:57:14 -0400 |
commit | 339adb3600c15d3d61320ed729bd5f002f7d7e94 (patch) | |
tree | 5b02cc8cb2ef819b063ddec9d3fc6aafd286676b /murmurhash.h | |
parent | 1a967e170724f9c0d7be3b7a88235c6a73297c67 (diff) |
init
Diffstat (limited to 'murmurhash.h')
-rw-r--r-- | murmurhash.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/murmurhash.h b/murmurhash.h new file mode 100644 index 0000000..48d39bf --- /dev/null +++ b/murmurhash.h @@ -0,0 +1,18 @@ + +/** + * `murmurhash.h' - murmurhash + * + * copyright (c) 2014 joseph werle <joseph.werle@gmail.com> + */ + +#ifndef MURMURHASH_H +#define MURMURHASH_H 1 + +/** + * + */ + +uint32_t +murmurhash (const char *, uint32_t, uint32_t); + +#endif |