PostGIS  3.3.9dev-r@@SVN_REVISION@@

◆ rt_pg_options()

static char* rt_pg_options ( const char *  varname)
static

Definition at line 245 of file rtpostgis.c.

246 {
247  char optname[128];
248  char *optvalue;
249  snprintf(optname, 128, "postgis.%s", varname);
250  /* GetConfigOptionByName(name, found_name, missing_ok) */
251  optvalue = GetConfigOptionByName(optname, NULL, true);
252  if (optvalue && strlen(optvalue) == 0)
253  return NULL;
254  else
255  return optvalue;
256 }

Referenced by _PG_init().

Here is the caller graph for this function: