PostGIS 3.7.0dev-r@@SVN_REVISION@@
Loading...
Searching...
No Matches

◆ convert_bytes_to_hex()

char * convert_bytes_to_hex ( uint8_t *  ewkb,
size_t  size 
)

Binary to hexewkb conversion function.

Definition at line 703 of file pgsql2shp-core.c.

704{
705 size_t i;
706 char *hexewkb;
707
708 /* Convert the byte stream to a hex string using liblwgeom's deparse_hex function */
709 hexewkb = malloc(size * 2 + 1);
710 for (i=0; i<size; ++i) deparse_hex(ewkb[i], &hexewkb[i * 2]);
711 hexewkb[size * 2] = '\0';
712
713 return hexewkb;
714}
void deparse_hex(uint8_t str, char *result)
Convert a char into a human readable hex digit.
Definition lwgeom_api.c:614
void * malloc(YYSIZE_T)

References deparse_hex(), and malloc().

Referenced by ShpLoaderGenerateShapeRow().

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