#include "client.h"
#include <stdint.h>

void main() {
  struct filter f;
  int b;
  f = bloom_filter(0x10000U);
  add("foo", &f);
  add("bar", &f);
  b = mem("foo", &f);
  assert (b);
  return;
}