1 /************************************************************************/
2 /*									*/
3 /*  Hash functions for tags.						*/
4 /*									*/
5 /************************************************************************/
6 
7 #   ifndef	DOC_RTF_TAG_HASH_H
8 #   define	DOC_RTF_TAG_HASH_H
9 
10 extern unsigned long docRtfTagHash(	const unsigned char *	tagkey,
11 					int			len );
12 
13 extern int docRtfTagIndex(		const unsigned char *	tagkey,
14 					int			len );
15 
16 extern unsigned long docRtfShapePropHash(
17 					const unsigned char *	tagkey,
18 					int			len );
19 
20 extern int docRtfShapePropIndex(	const unsigned char *	tagkey,
21 					int			len );
22 
23 #    endif	/*  DOC_RTF_TAG_HASH_H	*/
24