Deleted Added
full compact
ctm_rmail.c (7147) ctm_rmail.c (8857)
1/*
2 * Accept one (or more) ASCII encoded chunks that together make a compressed
3 * CTM delta. Decode them and reconstruct the deltas. Any completed
4 * deltas may be passed to ctm for unpacking.
5 *
6 * Author: Stephen McKay
7 *
8 * NOTICE: This is free software. I hope you get some use from this program.

--- 542 unchanged lines hidden (view full) ---

551 return 1;
552 }
553
554
555/*
556 * MIME BASE64 decode table.
557 */
558static unsigned char from_b64[0x80] =
1/*
2 * Accept one (or more) ASCII encoded chunks that together make a compressed
3 * CTM delta. Decode them and reconstruct the deltas. Any completed
4 * deltas may be passed to ctm for unpacking.
5 *
6 * Author: Stephen McKay
7 *
8 * NOTICE: This is free software. I hope you get some use from this program.

--- 542 unchanged lines hidden (view full) ---

551 return 1;
552 }
553
554
555/*
556 * MIME BASE64 decode table.
557 */
558static unsigned char from_b64[0x80] =
559 {
559 {
560 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
560 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
561 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
562 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
563 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
564 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
561 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
562 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
563 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
564 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
565 0xff, 0xff, 0xff, 0x3e, 0xff, 0xff, 0xff, 0x3f,
566 0x34, 0x35, 0x36, 0x37, 0x38, 0x39, 0x3a, 0x3b,
567 0x3c, 0x3d, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
568 0xff, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06,
569 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
570 0x0f, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16,
571 0x17, 0x18, 0x19, 0xff, 0xff, 0xff, 0xff, 0xff,
572 0xff, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, 0x20,

--- 75 unchanged lines hidden ---
565 0xff, 0xff, 0xff, 0x3e, 0xff, 0xff, 0xff, 0x3f,
566 0x34, 0x35, 0x36, 0x37, 0x38, 0x39, 0x3a, 0x3b,
567 0x3c, 0x3d, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
568 0xff, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06,
569 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
570 0x0f, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16,
571 0x17, 0x18, 0x19, 0xff, 0xff, 0xff, 0xff, 0xff,
572 0xff, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, 0x20,

--- 75 unchanged lines hidden ---