PostGIS  3.4.0dev-r@@SVN_REVISION@@

◆ unzigzag8()

int8_t unzigzag8 ( uint8_t  val)

Definition at line 204 of file varint.c.

205 {
206  return !(val & 0x01) ?
207  ((int8_t)(val >> 1)) :
208  (-1 * (int8_t)((val+1) >> 1));
209 }

Referenced by header_from_twkb_state(), and test_zigzag().

Here is the caller graph for this function: