PostGIS  3.7.0dev-r@@SVN_REVISION@@

◆ core_asprintf()

static char static char * core_asprintf ( const char *  format,
  ... 
)
static

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

78 {
79  va_list ap;
80  char *value;
81  int err;
82  va_start(ap, format);
83  err = vasprintf(&value, format, ap);
84  if (err < 0)
85  exit(-1);
86  va_end(ap);
87  return value;
88 }
int value
Definition: genraster.py:62

References genraster::value.

Referenced by getTableInfo(), projFileCreate(), and ShpDumperOpenTable().

Here is the caller graph for this function: