Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 1 | #ifndef UUENCODE_H |
2 | #define UUENCODE_H | ||||
Damien Miller | e247cc4 | 2000-05-07 12:03:14 +1000 | [diff] [blame] | 3 | int uuencode(unsigned char *src, unsigned int srclength, char *target, size_t targsize); |
4 | int uudecode(const char *src, unsigned char *target, size_t targsize); | ||||
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 5 | void dump_base64(FILE *fp, unsigned char *data, int len); |
6 | #endif |