aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2006-09-03 15:49:40 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2006-09-03 15:49:40 +0000
commit21afc7dc291f1cb11feec7a9766bf3542545f581 (patch)
tree5cf8056965bf44d78ef9937fe1f529fa2915e772 /include
parent22dca23d52c836e40c79cb4042b867fdc06f6ca3 (diff)
downloadbusybox-21afc7dc291f1cb11feec7a9766bf3542545f581.tar.gz
uuencode: common implementation for wget and uuencode (closing bug 694)
Diffstat (limited to 'include')
-rw-r--r--include/libbb.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/libbb.h b/include/libbb.h
index b94586165..404ff2e7a 100644
--- a/include/libbb.h
+++ b/include/libbb.h
@@ -498,6 +498,10 @@ extern unsigned char xread_char(int fd);
extern void xlseek(int fd, off_t offset, int whence);
extern void xwrite(int fd, void *buf, size_t count);
+extern const char bb_uuenc_tbl_base64[];
+extern const char bb_uuenc_tbl_std[];
+extern void bb_uuencode(const unsigned char *s, char *store, const int length, const char *tbl);
+
#ifndef COMM_LEN
#ifdef TASK_COMM_LEN
#define COMM_LEN TASK_COMM_LEN