summaryrefslogtreecommitdiff
path: root/usr.bin/tcfs/uuencode.h
blob: e2333c7dcac41020fc578e47ebb1b7c1f21c3076 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/*	$OpenBSD: uuencode.h,v 1.2 2000/06/20 08:01:21 fgsch Exp $	*/

#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