You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

10 lines
191 B

#ifndef HAS_BITMAP_H
#define BITMAP_SIZE 32
typedef unsigned char bitmap_t[BITMAP_SIZE];
int bitmap_compare(const unsigned char *a, const unsigned char *b);
#endif
#define HAS_BITMAP_H 1