1
2
3
4
5
6
7
8
|
#define bucket_width 24
#define bucket_height 24
static char bucket_bits[] = {
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7e,0x00,0xe0,0xff,0x07,0x78,0xff,0x1f,
0x78,0xff,0x1f,0x7c,0xc0,0x3f,0x1c,0x80,0x3f,0x1c,0x80,0x3f,0xfc,0xc3,0x3f,
0xf8,0xff,0x1b,0xf8,0xff,0x1b,0xf8,0xff,0x19,0xf8,0xff,0x19,0xf8,0xff,0x1d,
0xf0,0xff,0x1d,0xf0,0xff,0x1d,0xf0,0xff,0x1f,0xf0,0xff,0x0f,0xe0,0xff,0x05,
0xc0,0xff,0x03,0x00,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00};
|