Ns_ConfigGetValueExact
Overview
Get configuration variable case-sensitively
Syntax
char *Ns_ConfigGetValueExact(
char *sectionName,
char *key,
);
Description
The Ns_ConfigGetValueExact function is a case-sensitive counterpart to the Ns_ConfigGetValue function. It matches both the section name and the key case-sensitively. It returns the value for the given key in the section named sectionName.
The space for the string returned is located in the configuration data. You must not deallocate or modify the string.
Example
See the example for Ns_ConfigGetValue.