Blame lib/bloom.h

Packit 8930e1
#ifndef FIO_BLOOM_H
Packit 8930e1
#define FIO_BLOOM_H
Packit 8930e1
Packit 8930e1
#include <inttypes.h>
Packit 8930e1
#include "../lib/types.h"
Packit 8930e1
Packit 8930e1
struct bloom;
Packit 8930e1
Packit 8930e1
struct bloom *bloom_new(uint64_t entries);
Packit 8930e1
void bloom_free(struct bloom *b);
Packit 8930e1
bool bloom_set(struct bloom *b, uint32_t *data, unsigned int nwords);
Packit 8930e1
bool bloom_string(struct bloom *b, const char *data, unsigned int len, bool);
Packit 8930e1
Packit 8930e1
#endif