diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-08-12 20:58:27 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-08-12 20:58:27 +0000 |
commit | 6ca409e0e4c198fe3081346eebbae3f068fe605a (patch) | |
tree | 060cb05d99220a1eda399194d1209c269f0e8cd8 /libbb/uuencode.c | |
parent | 4185548984357df91311f30c8e43d95f33922576 (diff) | |
download | busybox-w32-6ca409e0e4c198fe3081346eebbae3f068fe605a.tar.gz busybox-w32-6ca409e0e4c198fe3081346eebbae3f068fe605a.tar.bz2 busybox-w32-6ca409e0e4c198fe3081346eebbae3f068fe605a.zip |
trylink: produce even more info about final link stage
trylink: explain how to modify link and drastically decrease amount
of padding (unfortunately, needs hand editing ATM).
*: add ALIGN1 / ALIGN2 to global strings and arrays of bytes and shorts
size saving: 0.5k
Diffstat (limited to 'libbb/uuencode.c')
-rw-r--r-- | libbb/uuencode.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libbb/uuencode.c b/libbb/uuencode.c index f525322f8..0aedf3387 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 + 2] = { | 11 | const char bb_uuenc_tbl_base64[65 + 2] ALIGN1 = { |
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', |
@@ -21,7 +21,7 @@ const char bb_uuenc_tbl_base64[65 + 2] = { | |||
21 | '\n', '\0' /* needed for uudecode.c */ | 21 | '\n', '\0' /* needed for uudecode.c */ |
22 | }; | 22 | }; |
23 | 23 | ||
24 | const char bb_uuenc_tbl_std[65] = { | 24 | const char bb_uuenc_tbl_std[65] ALIGN1 = { |
25 | '`', '!', '"', '#', '$', '%', '&', '\'', | 25 | '`', '!', '"', '#', '$', '%', '&', '\'', |
26 | '(', ')', '*', '+', ',', '-', '.', '/', | 26 | '(', ')', '*', '+', ',', '-', '.', '/', |
27 | '0', '1', '2', '3', '4', '5', '6', '7', | 27 | '0', '1', '2', '3', '4', '5', '6', '7', |