summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjwerle <joseph.werle@gmail.com>2022-04-14 13:52:51 -0400
committerjwerle <joseph.werle@gmail.com>2022-04-14 13:52:51 -0400
commit00b318af1653f393cd859c0ec826c65655368217 (patch)
tree3486aa3f7e14808fb27a5d46e8bfe242330bd44c
parentc0e6ccb7b76479db6334e32c7fe91c63162ca9f9 (diff)
refactor(): cleanup
-rw-r--r--clib.json6
-rw-r--r--murmurhash.c3
-rw-r--r--murmurhash.h5
3 files changed, 8 insertions, 6 deletions
diff --git a/clib.json b/clib.json
index e89ce65..1a7eadf 100644
--- a/clib.json
+++ b/clib.json
@@ -3,7 +3,11 @@
"version": "0.0.3",
"repo": "jwerle/murmurhash.c",
"description": "MurmurHash3 general hash bashed lookup function implementation",
+ "makefile": "Makefile",
"keywords": ["murmur", "hash", "murmurhash"],
"license": "MIT",
- "src": [ "murmurhash.h", "murmurhash.c" ]
+ "src": [
+ "murmurhash.h",
+ "murmurhash.c"
+ ]
}
diff --git a/murmurhash.c b/murmurhash.c
index 4f1dc4b..0c631c4 100644
--- a/murmurhash.c
+++ b/murmurhash.c
@@ -1,8 +1,7 @@
-
/**
* `murmurhash.h' - murmurhash
*
- * copyright (c) 2014 joseph werle <joseph.werle@gmail.com>
+ * copyright (c) 2014-2022 joseph werle <joseph.werle@gmail.com>
*/
#include <stdlib.h>
diff --git a/murmurhash.h b/murmurhash.h
index 0458c54..4a692d4 100644
--- a/murmurhash.h
+++ b/murmurhash.h
@@ -1,12 +1,11 @@
-
/**
* `murmurhash.h' - murmurhash
*
- * copyright (c) 2014 joseph werle <joseph.werle@gmail.com>
+ * copyright (c) 2014-2022 joseph werle <joseph.werle@gmail.com>
*/
#ifndef MURMURHASH_H
-#define MURMURHASH_H 1
+#define MURMURHASH_H
#include <stdint.h>