pbm.h 190 B

12345678910
  1. #ifndef ZMAP_PBM_H
  2. #define ZMAP_PBM_H
  3. #include <stdint.h>
  4. uint8_t** pbm_init(void);
  5. int pbm_check(uint8_t **b, uint32_t v);
  6. void pbm_set(uint8_t **b, uint32_t v);
  7. #endif /* ZMAP_PBM_H */