Damien Miller | ffda4cb | 2003-05-15 13:57:51 +1000 | [diff] [blame] | 1 | /* $Id: base64.h,v 1.5 2003/05/15 03:57:51 djm Exp $ */ |
Damien Miller | e9cf357 | 2001-02-09 12:55:35 +1100 | [diff] [blame] | 2 | |
Damien Miller | e247cc4 | 2000-05-07 12:03:14 +1000 | [diff] [blame] | 3 | #ifndef _BSD_BASE64_H |
| 4 | #define _BSD_BASE64_H |
| 5 | |
| 6 | #include "config.h" |
| 7 | |
| 8 | #ifndef HAVE___B64_NTOP |
Damien Miller | 75edac3 | 2000-05-09 15:28:41 +1000 | [diff] [blame] | 9 | # ifndef HAVE_B64_NTOP |
Damien Miller | e247cc4 | 2000-05-07 12:03:14 +1000 | [diff] [blame] | 10 | int b64_ntop(u_char const *src, size_t srclength, char *target, |
| 11 | size_t targsize); |
Damien Miller | 75edac3 | 2000-05-09 15:28:41 +1000 | [diff] [blame] | 12 | # endif /* !HAVE_B64_NTOP */ |
Damien Miller | ffda4cb | 2003-05-15 13:57:51 +1000 | [diff] [blame] | 13 | # define __b64_ntop(a,b,c,d) b64_ntop(a,b,c,d) |
Damien Miller | e247cc4 | 2000-05-07 12:03:14 +1000 | [diff] [blame] | 14 | #endif /* HAVE___B64_NTOP */ |
| 15 | |
Damien Miller | fe1f143 | 2003-02-24 15:45:42 +1100 | [diff] [blame] | 16 | #ifndef HAVE___B64_PTON |
| 17 | # ifndef HAVE_B64_PTON |
| 18 | int b64_pton(char const *src, u_char *target, size_t targsize); |
| 19 | # endif /* !HAVE_B64_PTON */ |
Damien Miller | ffda4cb | 2003-05-15 13:57:51 +1000 | [diff] [blame] | 20 | # define __b64_pton(a,b,c) b64_pton(a,b,c) |
Damien Miller | fe1f143 | 2003-02-24 15:45:42 +1100 | [diff] [blame] | 21 | #endif /* HAVE___B64_PTON */ |
| 22 | |
Kevin Steves | a2b9607 | 2002-02-26 16:59:58 +0000 | [diff] [blame] | 23 | #endif /* _BSD_BASE64_H */ |