PostGIS  3.4.0dev-r@@SVN_REVISION@@

◆ rt_pg_options()

static char* rt_pg_options ( const char *  varname)
static

Definition at line 253 of file rtpostgis.c.

254 {
255  char optname[128];
256  char *optvalue;
257  snprintf(optname, 128, "postgis.%s", varname);
258  /* GetConfigOptionByName(name, found_name, missing_ok) */
259  optvalue = GetConfigOptionByName(optname, NULL, true);
260  if (optvalue && strlen(optvalue) == 0)
261  return NULL;
262  else
263  return optvalue;
264 }

Referenced by _PG_init().

Here is the caller graph for this function: