[BACK]Return to uuencode.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / tcfs

Annotation of src/usr.bin/tcfs/uuencode.h, Revision 1.2

1.2     ! fgsch       1: /*     $OpenBSD$       */
        !             2:
1.1       provos      3: #ifndef UUENCODE_H
                      4: #define UUENCODE_H
                      5: #include <sys/types.h>
                      6: #include <netinet/in.h>
                      7: #include <resolv.h>
                      8:
                      9: #define        uuencode(src, srclength, target,targsize) \
                     10:        __b64_ntop(src, srclength, target, targsize)
                     11: #define        uudecode(src, target, targsize) \
                     12:        __b64_pton(src, target, targsize)
                     13: #endif