| 226 | } |
| 227 | |
| 228 | int bitmap_is_empty(struct bitmap *self) |
| 229 | { |
| 230 | size_t i; |
| 231 | for (i = 0; i < self->word_alloc; i++) |
| 232 | if (self->words[i]) |
| 233 | return 0; |
| 234 | return 1; |
| 235 | } |
| 236 | |
| 237 | int bitmap_equals(struct bitmap *self, struct bitmap *other) |
| 238 | { |
no outgoing calls
no test coverage detected