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.

18 lines
354 B

#ifndef HAS_BITMAP_H
#define HAS_BITMAP_H 1
11 years ago
11 years ago
#define BITMAP_SIZE 32
11 years ago
#define BITMAP_BITS 256
11 years ago
typedef unsigned char bitmap_t[BITMAP_SIZE];
int
bitmap_compare(const unsigned char *a,
const unsigned char *b);
int
bitmap_diffmap(const unsigned char *diff,
const unsigned char *a,
const unsigned char *b)
#endif