"Initial commit to Gerrit"
[profile/ivi/gpsd.git] / bsd-base64.h
1 /*
2  * This file is Copyright (c)2010 by the GPSD project
3  * BSD terms apply: see the file COPYING in the distribution root for details.
4  */
5 #ifndef _BSD_BASE64_H
6 #define _BSD_BASE64_H
7
8 #ifndef HAVE___B64_NTOP
9 # ifndef HAVE_B64_NTOP
10 int b64_ntop(unsigned char const *src, size_t srclength, char *target, 
11     size_t targsize);
12 int b64_pton(char const *src, unsigned char *target, size_t targsize);
13 # endif /* !HAVE_B64_NTOP */
14 # define __b64_ntop b64_ntop
15 # define __b64_pton b64_pton
16 #endif /* HAVE___B64_NTOP */
17
18 #endif /* _BSD_BASE64_H */