| 82 | } |
| 83 | |
| 84 | int bloom_init_size(struct bloom *bloom, int entries, double error, |
| 85 | unsigned int cache_size) { |
| 86 | return bloom_init(bloom, entries, error); |
| 87 | } |
| 88 | |
| 89 | int bloom_init(struct bloom *bloom, int entries, double error) { |
| 90 | bloom->ready = 0; |
nothing calls this directly
no test coverage detected