17 #if !defined(__PARSETOOLS_H__)
18 #define __PARSETOOLS_H__
21 #include <avr/pgmspace.h>
26 #if defined(ARDUINO) && ARDUINO >=100
51 pBuf = (uint8_t*)pbuf->
pValue;
55 bool Parse(uint8_t **pp, uint16_t *pcntdn);
69 pBuf = (uint8_t*)pbuf->
pValue;
73 bool Skip(uint8_t **pp, uint16_t *pcntdn, uint16_t bytes_to_skip)
78 countDown = bytes_to_skip;
81 for (; countDown && (*pcntdn); countDown--, (*pp)++, (*pcntdn)--);
136 arLenCntdn = arLen = 3;
141 arLenCntdn = arLen = 0;
151 #endif // __PARSETOOLS_H__