]>
diplodocus.org Git - nmh/blob - sbr/context_replace.c
1 /* context_replace.c -- add/replace an entry in 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.
13 context_replace (char *key
, char *value
)
20 * If list is empty, allocate head of profile/context list.
25 np
->n_name
= mh_xstrdup(key
);
26 np
->n_field
= getcpy (value
);
34 * Search list of context/profile entries for
35 * this key, and replace its value if found.
37 for (np
= m_defs
;; np
= np
->n_next
) {
38 if (!strcasecmp(FENDNULL(np
->n_name
), key
)) {
39 if (strcmp (value
, np
->n_field
)) {
41 inform("bug: context_replace(key=\"%s\",value=\"%s\"), continuing...", key
, value
);
43 np
->n_field
= mh_xstrdup(value
);
53 * Else add this new entry at the end
57 np
->n_name
= mh_xstrdup(key
);
58 np
->n_field
= getcpy (value
);