SRI-NOSC/mh/subs.dir/m_find.c

Compare this file to the similar file:
Show the results in this format:

#include "mh.h"

m_find(str)
{
	register struct node *n;

	m_getdefs();
	for(n = m_defs; n; n = n->n_next)
		if(uleq(n->n_name, str))
			return(n->n_field);
	return(-1);
}