| * BSD license, See the LICENSE file for more information. |
| #ifndef NDN_BINARYXMLDECODER_H |
| #define NDN_BINARYXMLDECODER_H |
| struct ndn_BinaryXMLDecoder { |
| const unsigned char *input; |
| unsigned int inputLength; |
| static inline void ndn_BinaryXMLDecoder_init(struct ndn_BinaryXMLDecoder *self, const unsigned char *input, unsigned int inputLength) { |
| self->inputLength = inputLength; |
| // Even though the first byte should not be zero, this silently ignores initial zeros. |
| const char *ndn_BinaryXMLDecoder_decodeTypeAndValue(struct ndn_BinaryXMLDecoder *self, unsigned int *type, unsigned int *value); |
| * Set the offset into the input, used for the next read. |
| * @param self pointer to the ndn_BinaryXMLDecoder struct |
| * @param offset the new offset |
| static inline void ndn_BinaryXMLDecoder_seek(struct ndn_BinaryXMLDecoder *self, unsigned int offset) { |