PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ unzigzag8()

int8_t unzigzag8 ( uint8_t  val)

Definition at line 203 of file varint.c.

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

Referenced by header_from_twkb_state(), and test_zigzag().

Here is the caller graph for this function: