Deleted Added
full compact
base64.h (98937) base64.h (113908)
1/* $Id: base64.h,v 1.3 2002/02/26 16:59:59 stevesk Exp $ */
1/* $Id: base64.h,v 1.4 2003/02/24 04:45:43 djm Exp $ */
2
3#ifndef _BSD_BASE64_H
4#define _BSD_BASE64_H
5
6#include "config.h"
7
8#ifndef HAVE___B64_NTOP
9# ifndef HAVE_B64_NTOP
10int b64_ntop(u_char const *src, size_t srclength, char *target,
11 size_t targsize);
2
3#ifndef _BSD_BASE64_H
4#define _BSD_BASE64_H
5
6#include "config.h"
7
8#ifndef HAVE___B64_NTOP
9# ifndef HAVE_B64_NTOP
10int b64_ntop(u_char const *src, size_t srclength, char *target,
11 size_t targsize);
12int b64_pton(char const *src, u_char *target, size_t targsize);
13# endif /* !HAVE_B64_NTOP */
14# define __b64_ntop b64_ntop
12# endif /* !HAVE_B64_NTOP */
13# define __b64_ntop b64_ntop
15# define __b64_pton b64_pton
16#endif /* HAVE___B64_NTOP */
17
14#endif /* HAVE___B64_NTOP */
15
16#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 */
20# define __b64_pton b64_pton
21#endif /* HAVE___B64_PTON */
22
18#endif /* _BSD_BASE64_H */
23#endif /* _BSD_BASE64_H */