summaryrefslogtreecommitdiff
path: root/util.h
diff options
context:
space:
mode:
authorHiltjo Posthuma <hiltjo@codemadness.org>2017-12-09 12:40:43 +0100
committerHiltjo Posthuma <hiltjo@codemadness.org>2017-12-09 12:40:43 +0100
commitade860f463dc04be3149e6367b77af5a5f50de31 (patch)
treebab89811fbc353e59f925e3f08d7f4c3413aef3c /util.h
parent73341a5cf74d960348dfed62b3dd2d7a72f61495 (diff)
sfeed_mbox: move murmur to this file, cleanup
Diffstat (limited to 'util.h')
-rw-r--r--util.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/util.h b/util.h
index 11b8985..2d1a184 100644
--- a/util.h
+++ b/util.h
@@ -41,6 +41,3 @@ int parseuri(const char *, struct uri *, int);
void printutf8pad(FILE *, const char *, size_t, int);
int strtotime(const char *, time_t *);
void xmlencode(const char *, FILE *);
-
-#define ROT32(x, y) ((x << y) | (x >> (32 - y)))
-uint32_t murmur3_32(const char *, uint32_t, uint32_t);