[BACK]Return to mdoc_hash.c CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Diff for /mandoc/Attic/mdoc_hash.c between version 1.22 and 1.23

version 1.22, 2015/04/02 21:36:50 version 1.23, 2015/04/02 22:48:17
Line 62  mdoc_hash_init(void)
Line 62  mdoc_hash_init(void)
         }          }
 }  }
   
 enum mdoct  int
 mdoc_hash_find(const char *p)  mdoc_hash_find(const char *p)
 {  {
         int               major, i, j;          int               major, i, j;
Line 86  mdoc_hash_find(const char *p)
Line 86  mdoc_hash_find(const char *p)
                 if (UCHAR_MAX == (i = table[major + j]))                  if (UCHAR_MAX == (i = table[major + j]))
                         break;                          break;
                 if (0 == strcmp(p, mdoc_macronames[i]))                  if (0 == strcmp(p, mdoc_macronames[i]))
                         return((enum mdoct)i);                          return(i);
         }          }
   
         return(MDOC_MAX);          return(MDOC_MAX);

Legend:
Removed from v.1.22  
changed lines
  Added in v.1.23

CVSweb