| 181 | } |
| 182 | |
| 183 | int bloom_reset(struct bloom * bloom) |
| 184 | { |
| 185 | if (!bloom->ready) return 1; |
| 186 | memset(bloom->bf, 0, bloom->bytes); |
| 187 | return 0; |
| 188 | } |
| 189 | /* |
| 190 | int bloom_save(struct bloom * bloom, char * filename) |
| 191 | { |
nothing calls this directly
no outgoing calls
no test coverage detected