Byte Read a byte and advance the parse state forward.
Definition at line 257 of file lwin_wkb.c.
258{
259 char char_value = 0;
260 LWDEBUG(4,
"Entered function");
261
264 return 0;
265 LWDEBUG(4,
"Passed state check");
266
267 char_value =
s->pos[0];
268 LWDEBUGF(4,
"Read byte value: %x", char_value);
270
271 return char_value;
272}
#define LWDEBUG(level, msg)
#define LWDEBUGF(level, msg,...)
static void wkb_parse_state_check(wkb_parse_state *s, size_t next)
Check that we are not about to read off the end of the WKB array.
References LWDEBUG, LWDEBUGF, s, WKB_BYTE_SIZE, and wkb_parse_state_check().
Referenced by lwgeom_from_wkb_state().