diff options
Diffstat (limited to 'uuencode.h')
-rw-r--r-- | uuencode.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/uuencode.h b/uuencode.h index d3f446284..c92c62744 100644 --- a/uuencode.h +++ b/uuencode.h | |||
@@ -1,6 +1,6 @@ | |||
1 | #ifndef UUENCODE_H | 1 | #ifndef UUENCODE_H |
2 | #define UUENCODE_H | 2 | #define UUENCODE_H |
3 | int uuencode(unsigned char *bufin, unsigned int nbytes, char *bufcoded); | 3 | int uuencode(unsigned char *src, unsigned int srclength, char *target, size_t targsize); |
4 | int uudecode(const char *bufcoded, unsigned char *bufplain, int outbufsize); | 4 | int uudecode(const char *src, unsigned char *target, size_t targsize); |
5 | void dump_base64(FILE *fp, unsigned char *data, int len); | 5 | void dump_base64(FILE *fp, unsigned char *data, int len); |
6 | #endif | 6 | #endif |