summaryrefslogtreecommitdiff
path: root/lib/bloom.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/bloom.h')
-rw-r--r--lib/bloom.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/lib/bloom.h b/lib/bloom.h
deleted file mode 100644
index 141ead9a..00000000
--- a/lib/bloom.h
+++ /dev/null
@@ -1,14 +0,0 @@
-#ifndef FIO_BLOOM_H
-#define FIO_BLOOM_H
-
-#include <inttypes.h>
-#include "../lib/types.h"
-
-struct bloom;
-
-struct bloom *bloom_new(uint64_t entries);
-void bloom_free(struct bloom *b);
-bool bloom_set(struct bloom *b, uint32_t *data, unsigned int nwords);
-bool bloom_string(struct bloom *b, const char *data, unsigned int len, bool);
-
-#endif