bloom: allow to pass in whether to set bits for strings
[fio.git] / lib / bloom.h
index d40d9f6bacf3ad15bbbcd65fe4b8491d1ebdb1f7..141ead9a68c3f3fef76655bd8b6b9f5735a9459f 100644 (file)
@@ -9,6 +9,6 @@ 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_set_string(struct bloom *b, const char *data, unsigned int len);
+bool bloom_string(struct bloom *b, const char *data, unsigned int len, bool);
 
 #endif