Jeff Thompson | 333c446 | 2013-06-28 14:04:22 -0700 | [diff] [blame] | 1 | /* |
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 | ||||
13 | extern "C" { | ||||
14 | #endif | ||||
15 | |||||
16 | char *ndn_decodeBinaryXMLName(struct ndn_Name *name, unsigned char *input, unsigned int inputLength); | ||||
17 | |||||
18 | #ifdef __cplusplus | ||||
19 | } | ||||
20 | #endif | ||||
21 | |||||
22 | #endif | ||||
23 |