summaryrefslogtreecommitdiff
path: root/openbsd-compat/base64.h
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-01-31 21:52:01 +0000
committerBen Lindstrom <mouring@eviladmin.org>2001-01-31 21:52:01 +0000
commit3c06f6a0b234822c7b2d6c63ef1aaf554af7167b (patch)
tree86e5fe626cb9cbade752baf2440badfa19976200 /openbsd-compat/base64.h
parentbf75776d415126a415ac92fb767c70dc67feba4f (diff)
- (bal) Reorder. Move all bsd-*, fake-*, next-*, and cygwin* stuff to
openbsd-compat/. And resolve all ./configure and Makefile.in issues assocated. Logic: * All OpenBSD functions should have the same filename as in the OpenBSD tree * All 'home brew' functions have bsd-* infront of them. * All 'not really implemented' functions have fake-* infront of them.
Diffstat (limited to 'openbsd-compat/base64.h')
-rw-r--r--openbsd-compat/base64.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/openbsd-compat/base64.h b/openbsd-compat/base64.h
new file mode 100644
index 000000000..c1d69dd6c
--- /dev/null
+++ b/openbsd-compat/base64.h
@@ -0,0 +1,16 @@
1#ifndef _BSD_BASE64_H
2#define _BSD_BASE64_H
3
4#include "config.h"
5
6#ifndef HAVE___B64_NTOP
7# ifndef HAVE_B64_NTOP
8int b64_ntop(u_char const *src, size_t srclength, char *target,
9 size_t targsize);
10int b64_pton(char const *src, u_char *target, size_t targsize);
11# endif /* !HAVE_B64_NTOP */
12# define __b64_ntop b64_ntop
13# define __b64_pton b64_pton
14#endif /* HAVE___B64_NTOP */
15
16#endif /* _BSD_BINRESVPORT_H */