MCPcopy Create free account
hub / github.com/couchbase/forestdb / iniparser_getstr

Function iniparser_getstr

utils/iniparser.cc:707–710  ·  view source on GitHub ↗

-------------------------------------------------------------------------*/ @brief Get the string associated to a key, return NULL if not found @param d Dictionary to search @param key Key string to look for @return pointer to statically allocated character string, or NULL. This function queries a dictionary for a key. A key as read from an ini file is given as "section:key

Source from the content-addressed store, hash-verified

705 */
706/*--------------------------------------------------------------------------*/
707char * iniparser_getstr(dictionary * d, char * key)
708{
709 return iniparser_getstring(d, key, NULL);
710}
711
712
713/*-------------------------------------------------------------------------*/

Callers

nothing calls this directly

Calls 1

iniparser_getstringFunction · 0.85

Tested by

no test coverage detected