char *Ns_ConfigGetValueExact( char *sectionName, char *key, );
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.
See the example for Ns_ConfigGetValue.