dictremove(3) - Linux man page

Name

dictRemove - remove item from dictionary.

Synopsis

#include <util/dict.h>

BOOL dictRemove(dictCtx dict, const char *id);

Arguments

dict - dictionary to search in.
id - identifier of item to remove.

Description

Removes item identified by <id> from <dict>.

MT-Level: Safe if <dict> thread-safe.

Return Value

None.

See Also

dictdestroy(3), dictcleanup(3), dictreleaselock(3), dictRemove(3), dictnext(3), dictcreate(3), dictsetvalue(3), dictmodifyvalue(3), dictSearch

Referenced By

dictsearch(3)