blob: 3a83b8c30def3941ffa423a130dae801e8a87b3a [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"
11
12#ifdef __cplusplus
13extern "C" {
14#endif
15
16char *ndn_decodeBinaryXMLName(struct ndn_Name *name, unsigned char *input, unsigned int inputLength);
17
18#ifdef __cplusplus
19}
20#endif
21
22#endif
23