| 36 | } |
| 37 | |
| 38 | struct bitmap *bitmap_dup(const struct bitmap *src) |
| 39 | { |
| 40 | struct bitmap *dst = bitmap_word_alloc(src->word_alloc); |
| 41 | COPY_ARRAY(dst->words, src->words, src->word_alloc); |
| 42 | return dst; |
| 43 | } |
| 44 | |
| 45 | static void bitmap_grow(struct bitmap *self, size_t word_alloc) |
| 46 | { |
no test coverage detected