MCPcopy Create free account
hub / github.com/git/git / bitmap_is_empty

Function bitmap_is_empty

ewah/bitmap.c:228–235  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

226}
227
228int 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
237int bitmap_equals(struct bitmap *self, struct bitmap *other)
238{

Callers 3

process_parentFunction · 0.85
last_modified_runFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected