[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.10 and 1.12

version 1.10, 2009/09/16 20:49:06 version 1.12, 2010/01/01 17:14:29
Line 14 
Line 14 
  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF   * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.   * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */   */
   #ifdef HAVE_CONFIG_H
   #include "config.h"
   #endif
   
 #include <sys/types.h>  #include <sys/types.h>
   
 #include <assert.h>  #include <assert.h>
Line 27 
Line 31 
   
 static  u_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 54  mdoc_hash_init(void)
Line 61  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 90  mdoc_hash_find(const char *p)
   
         return(MDOC_MAX);          return(MDOC_MAX);
 }  }
   

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

CVSweb