From 64c1434eec84453989bbb30384ae95cca74db95b Mon Sep 17 00:00:00 2001 From: Joseph Werle Date: Sat, 7 Mar 2015 17:03:23 -0500 Subject: Update murmurhash.h --- murmurhash.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/murmurhash.h b/murmurhash.h index 7d60d65..6a4dfbc 100644 --- a/murmurhash.h +++ b/murmurhash.h @@ -10,6 +10,10 @@ #define MURMURHASH_VERSION "0.0.3" +#ifdef __cplusplus +extern "C" { +#endif + /** * Returns a murmur hash of `key' based on `seed' * using the MurmurHash3 algorithm @@ -18,4 +22,8 @@ uint32_t murmurhash (const char *, uint32_t, uint32_t); +#ifdef __cplusplus +} +#endif + #endif -- cgit v1.2.3