SBDP02/bitmap.h
2018-12-08 21:03:55 +01:00

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 */