1: /* m_find.c - find an entry in the profile */
   2: 
   3: #include "../h/mh.h"
   4: #include <stdio.h>
   5: 
   6: 
   7: char   *m_find (str)
   8: register char  *str;
   9: {
  10:     register struct node   *np;
  11: 
  12:     m_getdefs ();
  13:     for (np = m_defs; np; np = np -> n_next)
  14:     if (uleq (np -> n_name, str))
  15:         return (np -> n_field);
  16: 
  17:     return NULL;
  18: }
Last modified: 1985-09-08
Generated: 2016-12-26
Generated by src2html V0.67
page hit count: 814
Valid CSS Valid XHTML 1.0 Strict