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
This commit is contained in:
Denis Vlasenko
2007-06-26 15:59:37 +00:00
parent 1fc6238ffa
commit e8240f19bd
4 changed files with 31 additions and 42 deletions

View File

@ -76,9 +76,9 @@ static char *safe_fgets(char *s, int size, FILE *stream)
#if ENABLE_FEATURE_WGET_AUTHENTICATION
/* Base64-encode character string and return the string. */
static char *base64enc(unsigned char *p, char *buf, int len)
static char *base64enc(const unsigned char *p, char *buf, int len)
{
bb_uuencode(p, buf, len, bb_uuenc_tbl_base64);
bb_uuencode(buf, p, len, bb_uuenc_tbl_base64);
return buf;
}
#endif