PostGIS
2.4.9dev-r@@SVN_REVISION@@
◆
unzigzag8()
int8_t unzigzag8
(
uint8_t
val
)
Definition at line
203
of file
varint.c
.
Referenced by
header_from_twkb_state()
, and
test_zigzag()
.
204
{
205
return
!(val & 0x01) ?
206
((int8_t)(val >> 1)) :
207
(-1 * (int8_t)((val+1) >> 1));
208
}
Here is the caller graph for this function:
liblwgeom
varint.c
Generated by
1.8.13