diff options
author | Denis Vlasenko | 2007-06-26 15:59:37 +0000 |
---|---|---|
committer | Denis Vlasenko | 2007-06-26 15:59:37 +0000 |
commit | e8240f19bd99802e0ccb1738b2d2e630b6eb9087 (patch) | |
tree | d9b7c5da8a146e809140d0c8c9e270df765159f9 /include | |
parent | 1fc6238ffab2cbd09b9ce573b99d82f3eaeb5b77 (diff) | |
download | busybox-e8240f19bd99802e0ccb1738b2d2e630b6eb9087.zip busybox-e8240f19bd99802e0ccb1738b2d2e630b6eb9087.tar.gz |
uuencode: shrink
function old new delta
uuencode_main 427 337 -90
------------------------------------------------------------------------------
(add/remove: 0/0 grow/shrink: 0/1 up/down: 0/-90) Total: -90 bytes
text data bss dec hex filename
734981 3028 14400 752409 b7b19 busybox_old
734889 3028 14400 752317 b7abd busybox_unstripped
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/libbb.h b/include/libbb.h index 3cdf28f..124b11f 100644 --- a/include/libbb.h +++ b/include/libbb.h @@ -884,7 +884,7 @@ pid_t *pidlist_reverse(pid_t *pidList); extern const char bb_uuenc_tbl_base64[]; extern const char bb_uuenc_tbl_std[]; -void bb_uuencode(const unsigned char *s, char *store, const int length, const char *tbl); +void bb_uuencode(char *store, const void *s, int length, const char *tbl); typedef struct sha1_ctx_t { uint32_t count[2]; |