|
|
void Ns_SetDeleteKey(
Ns_Set *set,
char *key
);
The Ns_SetIDeleteKey function is this function's case-insensitive counterpart.
Ns_Set *aSet;
aSet = Ns_SetCreate("");
Ns_SetPut(aSet, "foo", "foovalue");
Ns_SetPut(aSet, "bar", "barvalue");
Ns_SetDeleteKey(aSet, "foo"); /* deletes foo->foovalue */
/* finish processing of aSet */
Ns_SetFree(aSet);