blob: a25003016ea036375fe88792bda080995f255454 [file] [log] [blame]
Damien Millerffda4cb2003-05-15 13:57:51 +10001/* $Id: base64.h,v 1.5 2003/05/15 03:57:51 djm Exp $ */
Damien Millere9cf3572001-02-09 12:55:35 +11002
Damien Millere247cc42000-05-07 12:03:14 +10003#ifndef _BSD_BASE64_H
4#define _BSD_BASE64_H
5
6#include "config.h"
7
8#ifndef HAVE___B64_NTOP
Damien Miller75edac32000-05-09 15:28:41 +10009# ifndef HAVE_B64_NTOP
Damien Millere247cc42000-05-07 12:03:14 +100010int b64_ntop(u_char const *src, size_t srclength, char *target,
11 size_t targsize);
Damien Miller75edac32000-05-09 15:28:41 +100012# endif /* !HAVE_B64_NTOP */
Damien Millerffda4cb2003-05-15 13:57:51 +100013# define __b64_ntop(a,b,c,d) b64_ntop(a,b,c,d)
Damien Millere247cc42000-05-07 12:03:14 +100014#endif /* HAVE___B64_NTOP */
15
Damien Millerfe1f1432003-02-24 15:45:42 +110016#ifndef HAVE___B64_PTON
17# ifndef HAVE_B64_PTON
18int b64_pton(char const *src, u_char *target, size_t targsize);
19# endif /* !HAVE_B64_PTON */
Damien Millerffda4cb2003-05-15 13:57:51 +100020# define __b64_pton(a,b,c) b64_pton(a,b,c)
Damien Millerfe1f1432003-02-24 15:45:42 +110021#endif /* HAVE___B64_PTON */
22
Kevin Stevesa2b96072002-02-26 16:59:58 +000023#endif /* _BSD_BASE64_H */