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.

34 lines
740 B

11 years ago
#include "../src/common.h"
11 years ago
#include "../src/bitmap.h"
11 years ago
int
main() {
unsigned char a[BITMAP_SIZE], b[BITMAP_SIZE];
11 years ago
memset (a, 0x00, sizeof(a));
memset (b, 0x00, sizeof(b));
11 years ago
assert(bitmap_compare(a, b) == 0);
11 years ago
memset (a, 0xFE, sizeof(a));
memset (b, 0xFF, sizeof(b));
11 years ago
assert(bitmap_compare(a, b) == 32);
11 years ago
memset (a, 0x00, sizeof(a));
memset (b, 0x55, sizeof(b));
11 years ago
assert(bitmap_compare(a, b) == 128);
11 years ago
memset (a, 0x00, sizeof(a));
memset (b, 0xAA, sizeof(b));
11 years ago
assert(bitmap_compare(a, b) == 128);
11 years ago
memset (a, 0xAA, sizeof(a));
memset (b, 0x55, sizeof(b));
11 years ago
assert(bitmap_compare(a, b) == 256);
11 years ago
memset (a, 0x00, sizeof(a));
memset (b, 0xFF, sizeof(b));
11 years ago
assert(bitmap_compare(a, b) == 256);
11 years ago
return 0;
}