summaryrefslogtreecommitdiff
path: root/other/guess-who/base64.h
diff options
context:
space:
mode:
Diffstat (limited to 'other/guess-who/base64.h')
-rw-r--r--other/guess-who/base64.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/other/guess-who/base64.h b/other/guess-who/base64.h
new file mode 100644
index 0000000..97b1d43
--- /dev/null
+++ b/other/guess-who/base64.h
@@ -0,0 +1,17 @@
1/* From OpenSSH */
2
3#ifndef _BSD_BASE64_H
4#define _BSD_BASE64_H
5
6
7#ifndef HAVE___B64_NTOP
8# ifndef HAVE_B64_NTOP
9int b64_ntop(u_char const *src, size_t srclength, char *target,
10 size_t targsize);
11int b64_pton(char const *src, u_char *target, size_t targsize);
12# endif /* !HAVE_B64_NTOP */
13# define __b64_ntop b64_ntop
14# define __b64_pton b64_pton
15#endif /* HAVE___B64_NTOP */
16
17#endif /* _BSD_BINRESVPORT_H */