2 Proprietary Rand Corporation
, 1981.
3 Further distribution of
this software
4 subject to the terms of the Rand
15 register struct node
*np
;
18 for(np
= m_defs
; ; np
= np
->n_next
) {
19 if(uleq(np
->n_name
, key
)) {
20 if(strcmp(value
, np
->n_field
) != 0) {
30 np
->n_next
= (struct node
*) malloc(sizeof *np
);
32 np
->n_name
= getcpy(key
);