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

Diff for /mandoc/Attic/man_hash.c between version 1.2 and 1.3

version 1.2, 2009/03/23 15:41:09 version 1.3, 2009/03/26 09:55:39
Line 52  man_hash_find(const void *arg, const char *tmp)
Line 52  man_hash_find(const void *arg, const char *tmp)
         /* TODO */          /* TODO */
   
         for (i = 0; i < MAN_MAX; i++)          for (i = 0; i < MAN_MAX; i++)
                 if (0 == strcasecmp(tmp, man_macronames[i]))                  if (0 == strcmp(tmp, man_macronames[i]))
                         return(i);                          return(i);
   
         return(MAN_MAX);          return(MAN_MAX);

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.3

CVSweb