DEPRECATED - Please migrate to bloom_init2.
| 86 | |
| 87 | // DEPRECATED - Please migrate to bloom_init2. |
| 88 | int bloom_init(struct bloom * bloom, uint64_t entries, long double error) |
| 89 | { |
| 90 | return bloom_init2(bloom, entries, error); |
| 91 | } |
| 92 | |
| 93 | int bloom_init2(struct bloom * bloom, uint64_t entries, long double error) |
| 94 | { |
nothing calls this directly
no test coverage detected