PostGIS  2.5.7dev-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 256 of file lwin_wkb.c.

257 {
258  char char_value = 0;
259  LWDEBUG(4, "Entered function");
260 
262  LWDEBUG(4, "Passed state check");
263 
264  char_value = s->pos[0];
265  LWDEBUGF(4, "Read byte value: %x", char_value);
266  s->pos += WKB_BYTE_SIZE;
267 
268  return char_value;
269 }
char * s
Definition: cu_in_wkt.c:23
#define WKB_BYTE_SIZE
#define LWDEBUG(level, msg)
Definition: lwgeom_log.h:83
#define LWDEBUGF(level, msg,...)
Definition: lwgeom_log.h:88
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:130

References LWDEBUG, LWDEBUGF, s, WKB_BYTE_SIZE, and wkb_parse_state_check().

Referenced by lwgeom_from_wkb_state().

Here is the call graph for this function:
Here is the caller graph for this function: