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