X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=lib%2Fbloom.h;h=329fd36ab77b21f4a75e0af31e92ea85294b0992;hp=127ed9b77fb2100e692291f2dc0a155a23687617;hb=c0d7598348446f4506219d7bb12b293d790aebd5;hpb=1d272416412b0c867224a2b667e6b6124cbc26e8 diff --git a/lib/bloom.h b/lib/bloom.h index 127ed9b7..329fd36a 100644 --- a/lib/bloom.h +++ b/lib/bloom.h @@ -2,11 +2,12 @@ #define FIO_BLOOM_H #include +#include "../lib/types.h" struct bloom; struct bloom *bloom_new(uint64_t entries); void bloom_free(struct bloom *b); -int bloom_set(struct bloom *b, uint32_t *data, unsigned int nwords); +bool bloom_set(struct bloom *b, uint32_t *data, unsigned int nwords); #endif