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

File: [local] / src / usr.bin / tcfs / Attic / uuencode.h (download)

Revision 1.1, Sun Jun 18 22:07:24 2000 UTC (23 years, 11 months ago) by provos
Branch: MAIN

Initial revision

#ifndef UUENCODE_H
#define UUENCODE_H
#include <sys/types.h>
#include <netinet/in.h>
#include <resolv.h>

#define	uuencode(src, srclength, target,targsize) \
	__b64_ntop(src, srclength, target, targsize)
#define	uudecode(src, target, targsize) \
	__b64_pton(src, target, targsize)
#endif