[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.9 and 1.11

version 1.9, 2009/09/16 14:40:56 version 1.11, 2009/09/17 07:41:28
Line 25 
Line 25 
   
 #include "libmdoc.h"  #include "libmdoc.h"
   
 static  unsigned char   table[27 * 12];  static  u_char           table[27 * 12];
   
   /*
    * XXX - this hash has global scope, so if intended for use as a library
    * with multiple callers, it will need re-invocation protection.
    */
 void  void
 mdoc_hash_init(void)  mdoc_hash_init(void)
 {  {
Line 46  mdoc_hash_init(void)
Line 49  mdoc_hash_init(void)
   
                 for (j = 0; j < 12; j++)                  for (j = 0; j < 12; j++)
                         if (UCHAR_MAX == table[major + j]) {                          if (UCHAR_MAX == table[major + j]) {
                                 table[major + j] = i;                                  table[major + j] = (u_char)i;
                                 break;                                  break;
                         }                          }
   
Line 54  mdoc_hash_init(void)
Line 57  mdoc_hash_init(void)
         }          }
 }  }
   
   
 int  int
 mdoc_hash_find(const char *p)  mdoc_hash_find(const char *p)
 {  {
Line 84  mdoc_hash_find(const char *p)
Line 86  mdoc_hash_find(const char *p)
   
         return(MDOC_MAX);          return(MDOC_MAX);
 }  }
   

Legend:
Removed from v.1.9  
changed lines
  Added in v.1.11

CVSweb