bitmap.h 214 B

123456789101112131415
  1. #pragma once
  2. #include <stdint.h>
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. int bm_test(uint8_t* bm, size_t n);
  7. void bm_set(uint8_t* bm, size_t n);
  8. void bm_clear(uint8_t* bm, size_t n);
  9. #ifdef __cplusplus
  10. }
  11. #endif