]>
diplodocus.org Git - nmh/blob - sbr/context_del.c
1 /* context_del.c -- delete an entry from the context/profile list
3 * This code is Copyright (c) 2002, by the authors of nmh. See the
4 * COPYRIGHT file in the root directory of the nmh distribution for
5 * complete copyright information.
12 * Delete a key/value pair from the context/profile list.
13 * Return 0 if key is found, else return 1.
17 context_del (char *key
)
21 for (np
= m_defs
, pp
= NULL
; np
; pp
= np
, np
= np
->n_next
) {
22 if (!strcasecmp (FENDNULL(np
->n_name
), FENDNULL(key
))) {
24 inform("bug: context_del(key=\"%s\"), continuing...", np
->n_name
);
26 pp
->n_next
= np
->n_next
;
30 mh_xfree(np
->n_field
);