Add bloom filter
[fio.git] / lib / bloom.h
... / ...
CommitLineData
1#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