mirror of
https://github.com/opnsense/src.git
synced 2026-02-13 07:44:48 -05:00
6 lines
263 B
C
6 lines
263 B
C
#ifndef UUENCODE_H
|
|
#define UUENCODE_H
|
|
int uuencode(unsigned char *src, unsigned int srclength, char *target, size_t targsize);
|
|
int uudecode(const char *src, unsigned char *target, size_t targsize);
|
|
void dump_base64(FILE *fp, unsigned char *data, int len);
|
|
#endif
|