| 125 | } |
| 126 | |
| 127 | int bloom_add(struct bloom *bloom, const void *buffer, int len) { |
| 128 | return bloom_check_add(bloom, buffer, len, 1); |
| 129 | } |
| 130 | |
| 131 | void bloom_print(struct bloom *bloom) { |
| 132 | printf("bloom at %p\n", (void *)bloom); |
nothing calls this directly
no test coverage detected