1 #ifndef FIO_BLOOM_H 2 #define FIO_BLOOM_H 3 4 #include <inttypes.h> 5 6 struct bloom; 7 8 struct bloom *bloom_new(uint64_t entries); 9 void bloom_free(struct bloom *b); 10 int bloom_set(struct bloom *b, uint32_t *data, unsigned int nwords); 11 12 #endif 13