blob: 58552c541d5e8239dfa289f8913fa8a04bf8130b [file] [log] [blame]
Jeff Thompson333c4462013-06-28 14:04:22 -07001/*
2 * Author: Jeff Thompson
3 *
4 * BSD license, See the LICENSE file for more information.
5 */
6
7#ifndef NDN_BINARYXMLNAME_H
8#define NDN_BINARYXMLNAME_H
9
10#include "../Name.h"
Jeff Thompson1f3f5172013-07-01 19:02:36 -070011#include "BinaryXMLEncoder.h"
Jeff Thompson333c4462013-06-28 14:04:22 -070012
13#ifdef __cplusplus
14extern "C" {
15#endif
16
Jeff Thompson1156ed12013-07-01 16:13:56 -070017char *ndn_encodeBinaryXMLName(struct ndn_Name *name, struct ndn_BinaryXMLEncoder *encoder);
18
Jeff Thompson333c4462013-06-28 14:04:22 -070019char *ndn_decodeBinaryXMLName(struct ndn_Name *name, unsigned char *input, unsigned int inputLength);
20
21#ifdef __cplusplus
22}
23#endif
24
25#endif
26