]> andersk Git - openssh.git/blame - openbsd-compat/base64.h
- (djm) Bug #456: Support for NEC SX6 with Unicos; from wendyp@cray.com
[openssh.git] / openbsd-compat / base64.h
CommitLineData
0b202697 1/* $Id$ */
2
1d1ffb87 3#ifndef _BSD_BASE64_H
4#define _BSD_BASE64_H
5
6#include "config.h"
7
8#ifndef HAVE___B64_NTOP
eba02c94 9# ifndef HAVE_B64_NTOP
1d1ffb87 10int b64_ntop(u_char const *src, size_t srclength, char *target,
11 size_t targsize);
eba02c94 12# endif /* !HAVE_B64_NTOP */
13# define __b64_ntop b64_ntop
1d1ffb87 14#endif /* HAVE___B64_NTOP */
15
19160674 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
12e8eb8d 23#endif /* _BSD_BASE64_H */
This page took 0.158725 seconds and 5 git commands to generate.