1#ifndef __ENTITIES_H__
2#define __ENTITIES_H__
3
4/* entities.h -- recognize character entities
5
6  (c) 1998-2006 (W3C) MIT, ERCIM, Keio University
7  See tidy.h for the copyright notice.
8
9  CVS Info :
10
11    $Author: iccir $
12    $Date: 2007/01/30 23:46:51 $
13    $Revision: 1.3 $
14
15*/
16
17#include "forward.h"
18
19/* entity starting with "&" returns zero on error */
20/* uint    EntityCode( ctmbstr name, uint versions ); */
21ctmbstr TY_(EntityName)( uint charCode, uint versions );
22Bool    TY_(EntityInfo)( ctmbstr name, Bool isXml, uint* code, uint* versions );
23
24#endif /* __ENTITIES_H__ */
25