blob: 115fce2d7f19b565ab32acbadaf3db7c85431cd7 [file] [log] [blame]
Jeff Thompsonb7f95562013-07-03 18:36:42 -07001/*
2 * Author: Jeff Thompson
3 *
4 * BSD license, See the LICENSE file for more information.
5 */
6
7#ifndef NDN_BINARYXMLINTEREST_H
8#define NDN_BINARYXMLINTEREST_H
9
10#include "../Interest.h"
11
12#ifdef __cplusplus
13extern "C" {
14#endif
15
16char *ndn_encodeBinaryXMLInterest(struct ndn_Interest *interest, struct ndn_BinaryXMLEncoder *encoder);
17
18char *ndn_decodeBinaryXMLInterest(struct ndn_Interest *interest, unsigned char *input, unsigned int inputLength);
19
20#ifdef __cplusplus
21}
22#endif
23
24#endif
25