1dictRemove(3) util/dict.h dictRemove(3)
2
3
4
6 dictRemove - remove item from dictionary.
7
9 #include <util/dict.h>
10
11
12 BOOL dictRemove(dictCtx dict, const char *id);
13
14
15
16
18 dict - dictionary to search in.
19 id - identifier of item to remove.
20
21
23 Removes item identified by <id> from <dict>.
24
25 MT-Level: Safe if <dict> thread-safe.
26
27
29 None.
30
31
33 dictReleaseLock(3), dictRemove(3), dictNext(3), dictDestroy(3),
34 dictCreate(3), dictSetValue(3), dictModifyValue(3), dictSearch(3),
35 dictCleanup
36
37
38
39ClearSilver 14 November 2006 dictRemove(3)