bloom: use bool
[fio.git] / lib / bloom.h
... / ...
CommitLineData
1#ifndef FIO_BLOOM_H
2#define FIO_BLOOM_H
3
4#include <inttypes.h>
5#include "../lib/types.h"
6
7struct bloom;
8
9struct bloom *bloom_new(uint64_t entries);
10void bloom_free(struct bloom *b);
11bool bloom_set(struct bloom *b, uint32_t *data, unsigned int nwords);
12
13#endif