14 lines
291 B
C
14 lines
291 B
C
#ifndef BITMAP_H
|
|
#define BITMAP_H
|
|
|
|
#include <stdlib.h>
|
|
#include <inttypes.h>
|
|
|
|
long long bitmap_find_first(uint8_t* map, size_t length);
|
|
char bitmap_get(uint8_t* map, size_t pos);
|
|
void bitmap_set(uint8_t* map, size_t pos);
|
|
void bitmap_unset(uint8_t* map, size_t pos);
|
|
|
|
#endif /* BITMAP_H */
|
|
|