PostGIS  2.5.7dev-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 697 of file pgsql2shp-core.c.

698 {
699  size_t i;
700  char *hexewkb;
701 
702  /* Convert the byte stream to a hex string using liblwgeom's deparse_hex function */
703  hexewkb = malloc(size * 2 + 1);
704  for (i=0; i<size; ++i) deparse_hex(ewkb[i], &hexewkb[i * 2]);
705  hexewkb[size * 2] = '\0';
706 
707  return hexewkb;
708 }
void deparse_hex(uint8_t str, char *result)
Convert a char into a human readable hex digit.
Definition: lwgeom_api.c:682
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: