PostGIS  3.1.6dev-r@@SVN_REVISION@@

◆ convert_bytes_to_hex()

char * convert_bytes_to_hex ( uint8_t *  ewkb,
size_t  size 
)

Binary to hexewkb conversion function.

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

683 {
684  size_t i;
685  char *hexewkb;
686 
687  /* Convert the byte stream to a hex string using liblwgeom's deparse_hex function */
688  hexewkb = malloc(size * 2 + 1);
689  for (i=0; i<size; ++i) deparse_hex(ewkb[i], &hexewkb[i * 2]);
690  hexewkb[size * 2] = '\0';
691 
692  return hexewkb;
693 }
void deparse_hex(uint8_t str, char *result)
Convert a char into a human readable hex digit.
Definition: lwgeom_api.c:618
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: