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

version 1.12, 2009/09/16 14:40:56 version 1.14, 2009/09/17 07:41:28
Line 21 
Line 21 
   
 #include "libman.h"  #include "libman.h"
   
   static  u_char          table[26 * 6];
   
 static  unsigned char   table[26 * 6];  /*
    * 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
 man_hash_init(void)  man_hash_init(void)
 {  {
Line 42  man_hash_init(void)
Line 44  man_hash_init(void)
   
                 for (j = 0; j < 6; j++)                  for (j = 0; j < 6; j++)
                         if (UCHAR_MAX == table[x + j]) {                          if (UCHAR_MAX == table[x + j]) {
                                 table[x + j] = i;                                  table[x + j] = (u_char)i;
                                 break;                                  break;
                         }                          }
                 assert(j < 6);                  assert(j < 6);
         }          }
 }  }
   
   
 int  int
 man_hash_find(const char *tmp)  man_hash_find(const char *tmp)

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

CVSweb