diff options
author | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-09-03 15:49:40 +0000 |
---|---|---|
committer | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-09-03 15:49:40 +0000 |
commit | f9b31bf3bcd38c95a6575265e2597fbf1da04b16 (patch) | |
tree | 5cf8056965bf44d78ef9937fe1f529fa2915e772 /include/libbb.h | |
parent | 5f698a69678ee6ac7e499f6482d3fbc745ac4ef4 (diff) | |
download | busybox-w32-f9b31bf3bcd38c95a6575265e2597fbf1da04b16.tar.gz busybox-w32-f9b31bf3bcd38c95a6575265e2597fbf1da04b16.tar.bz2 busybox-w32-f9b31bf3bcd38c95a6575265e2597fbf1da04b16.zip |
uuencode: common implementation for wget and uuencode (closing bug 694)
git-svn-id: svn://busybox.net/trunk/busybox@16043 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'include/libbb.h')
-rw-r--r-- | include/libbb.h | 4 |
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); | |||
498 | extern void xlseek(int fd, off_t offset, int whence); | 498 | extern void xlseek(int fd, off_t offset, int whence); |
499 | extern void xwrite(int fd, void *buf, size_t count); | 499 | extern void xwrite(int fd, void *buf, size_t count); |
500 | 500 | ||
501 | extern const char bb_uuenc_tbl_base64[]; | ||
502 | extern const char bb_uuenc_tbl_std[]; | ||
503 | extern void bb_uuencode(const unsigned char *s, char *store, const int length, const char *tbl); | ||
504 | |||
501 | #ifndef COMM_LEN | 505 | #ifndef COMM_LEN |
502 | #ifdef TASK_COMM_LEN | 506 | #ifdef TASK_COMM_LEN |
503 | #define COMM_LEN TASK_COMM_LEN | 507 | #define COMM_LEN TASK_COMM_LEN |