nexmon – Blame information for rev 1
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
1 | office | 1 | /* source: xio-ascii.h */ |
2 | /* Copyright Gerhard Rieger 2002-2008 */ |
||
3 | /* Published under the GNU General Public License V.2, see file COPYING */ |
||
4 | |||
5 | #ifndef __xio_ascii_h_included |
||
6 | #define __xio_ascii_h_included 1 |
||
7 | |||
8 | extern char * |
||
9 | xiob64encodeline(const char *data, /* input data */ |
||
10 | size_t bytes, /* length of input data, >=0 */ |
||
11 | char *coded /* output buffer, must be long enough */ |
||
12 | ); |
||
13 | extern char *xiosanitize(const char *data, /* input data */ |
||
14 | size_t bytes, /* length of input data, >=0 */ |
||
15 | char *coded /* output buffer, must be long enough */ |
||
16 | ); |
||
17 | extern char * |
||
18 | xiohexdump(const unsigned char *data, size_t bytes, char *coded); |
||
19 | |||
20 | extern char * |
||
21 | xiodump(const unsigned char *data, size_t bytes, char *coded, size_t codlen, |
||
22 | int coding); |
||
23 | |||
24 | #endif /* !defined(__xio_ascii_h_included) */ |