[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.12 and 1.14

version 1.12, 2010/01/01 17:14:29 version 1.14, 2010/05/08 07:30:19
Line 43  mdoc_hash_init(void)
Line 43  mdoc_hash_init(void)
   
         memset(table, UCHAR_MAX, sizeof(table));          memset(table, UCHAR_MAX, sizeof(table));
   
         for (i = 0; i < MDOC_MAX; i++) {          for (i = 0; i < (int)MDOC_MAX; i++) {
                 p = mdoc_macronames[i];                  p = mdoc_macronames[i];
   
                 if (isalpha((u_char)p[1]))                  if (isalpha((u_char)p[1]))
Line 61  mdoc_hash_init(void)
Line 61  mdoc_hash_init(void)
         }          }
 }  }
   
 int  enum mdoct
 mdoc_hash_find(const char *p)  mdoc_hash_find(const char *p)
 {  {
         int               major, i, j;          int               major, i, j;
Line 85  mdoc_hash_find(const char *p)
Line 85  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(i);                          return((enum mdoct)i);
         }          }
   
         return(MDOC_MAX);          return(MDOC_MAX);

Legend:
Removed from v.1.12  
changed lines
  Added in v.1.14

CVSweb