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.
17 lines
349 B
17 lines
349 B
#ifndef HAS_BITMAP_H |
|
#define HAS_BITMAP_H 1 |
|
|
|
#define BITMAP_SIZE 32 |
|
#define BITMAP_BITS 256 |
|
|
|
typedef unsigned char bitmap_t[BITMAP_SIZE]; |
|
|
|
int |
|
bitmap_compare(const unsigned char *a, |
|
const unsigned char *b); |
|
|
|
int |
|
bitmap_diffmap(unsigned char *diff, |
|
const unsigned char *a, |
|
const unsigned char *b); |
|
#endif
|
|
|