blob: b3cde950450762fb46ffad52b12270a31e4d9ef6 [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);
10int bloom_check(struct bloom *b, uint32_t *data, unsigned int nwords);
11int bloom_set(struct bloom *b, uint32_t *data, unsigned int nwords);
12
13#endif