diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-06-12 07:24:11 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-06-12 07:24:11 +0000 |
commit | aa198dd39cad6cb41fbf6c8b64301b581a9ba206 (patch) | |
tree | 52e694aa0738e3c4b0bc110fce1a76e6a2285bf6 /libbb | |
parent | 745119605e2ecdffad1def6aaabfc8f6d270209e (diff) | |
download | busybox-w32-aa198dd39cad6cb41fbf6c8b64301b581a9ba206.tar.gz busybox-w32-aa198dd39cad6cb41fbf6c8b64301b581a9ba206.tar.bz2 busybox-w32-aa198dd39cad6cb41fbf6c8b64301b581a9ba206.zip |
uudecode: nuke duplicate base64_table[]. saves 65 bytes
Diffstat (limited to 'libbb')
-rw-r--r-- | libbb/uuencode.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libbb/uuencode.c b/libbb/uuencode.c index 38401205b..bbb92d600 100644 --- a/libbb/uuencode.c +++ b/libbb/uuencode.c | |||
@@ -8,7 +8,7 @@ | |||
8 | #include "libbb.h" | 8 | #include "libbb.h" |
9 | 9 | ||
10 | /* Conversion table. for base 64 */ | 10 | /* Conversion table. for base 64 */ |
11 | const char bb_uuenc_tbl_base64[65] = { | 11 | const char bb_uuenc_tbl_base64[65 + 2] = { |
12 | 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', | 12 | 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', |
13 | 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', | 13 | 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', |
14 | 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', | 14 | 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', |
@@ -17,7 +17,8 @@ const char bb_uuenc_tbl_base64[65] = { | |||
17 | 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', | 17 | 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', |
18 | 'w', 'x', 'y', 'z', '0', '1', '2', '3', | 18 | 'w', 'x', 'y', 'z', '0', '1', '2', '3', |
19 | '4', '5', '6', '7', '8', '9', '+', '/', | 19 | '4', '5', '6', '7', '8', '9', '+', '/', |
20 | '=' /* termination character */ | 20 | '=' /* termination character */, |
21 | '\n', '\0' /* needed for uudecode.c */ | ||
21 | }; | 22 | }; |
22 | 23 | ||
23 | const char bb_uuenc_tbl_std[65] = { | 24 | const char bb_uuenc_tbl_std[65] = { |