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.