PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ byte_from_wkb_state()

static char byte_from_wkb_state ( wkb_parse_state s)
static

Byte Read a byte and advance the parse state forward.

Definition at line 248 of file lwin_wkb.c.

References LWDEBUG, LWDEBUGF, wkb_parse_state::pos, WKB_BYTE_SIZE, and wkb_parse_state_check().

Referenced by lwgeom_from_wkb_state().

249 {
250  char char_value = 0;
251  LWDEBUG(4, "Entered function");
252 
254  LWDEBUG(4, "Passed state check");
255 
256  char_value = s->pos[0];
257  LWDEBUGF(4, "Read byte value: %x", char_value);
258  s->pos += WKB_BYTE_SIZE;
259 
260  return char_value;
261 }
#define WKB_BYTE_SIZE
#define LWDEBUG(level, msg)
Definition: lwgeom_log.h:83
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.
Definition: lwin_wkb.c:125
#define LWDEBUGF(level, msg,...)
Definition: lwgeom_log.h:88
const uint8_t * pos
Definition: lwin_wkb.c:46
Here is the call graph for this function:
Here is the caller graph for this function: