blob: 127ed9b77fb2100e692291f2dc0a155a23687617 [file] [log] [blame]
Jens Axboe5e595512014-09-26 09:51:16 -06001#ifndef FIO_BLOOM_H
2#define FIO_BLOOM_H
3
4#include <inttypes.h>
5
6struct bloom;
7
8struct bloom *bloom_new(uint64_t entries);
9void bloom_free(struct bloom *b);
Jens Axboe5e595512014-09-26 09:51:16 -060010int bloom_set(struct bloom *b, uint32_t *data, unsigned int nwords);
11
12#endif