MCPcopy Create free account
hub / github.com/OSGeo/gdal / CPL_STDCALL CPLGetThreadLocalConfigOption

Function CPL_STDCALL CPLGetThreadLocalConfigOption

port/cpl_conv.cpp:1795–1800  ·  view source on GitHub ↗

Same as CPLGetConfigOption() but only with options set with * CPLSetThreadLocalConfigOption() */

Source from the content-addressed store, hash-verified

1793/** Same as CPLGetConfigOption() but only with options set with
1794 * CPLSetThreadLocalConfigOption() */
1795const char *CPL_STDCALL CPLGetThreadLocalConfigOption(const char *pszKey,
1796 const char *pszDefault)
1797
1798{
1799 return CPLGetThreadLocalConfigOption(pszKey, pszDefault, true);
1800}
1801
1802static const char *
1803CPLGetThreadLocalConfigOption(const char *pszKey, const char *pszDefault,

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected