~ubuntu-branches/ubuntu/vivid/tidy/vivid-updates

« back to all changes in this revision

Viewing changes to src/entities.h

  • Committer: Bazaar Package Importer
  • Author(s): Jason Thomas
  • Date: 2008-01-20 21:46:03 UTC
  • mfrom: (0.2.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20080120214603-oqicq5jwr1exrm55
Tags: 20080116cvs-2
* debian/control: build depends on xsltproc
  (closes: #461608)
* debian/tidy.preinst,postinst: add code to move old config file
  (closes: #461623)

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
 
4
4
/* entities.h -- recognize character entities
5
5
 
6
 
  (c) 1998-2003 (W3C) MIT, ERCIM, Keio University
 
6
  (c) 1998-2006 (W3C) MIT, ERCIM, Keio University
7
7
  See tidy.h for the copyright notice.
8
8
 
9
9
  CVS Info :
10
10
 
11
 
    $Author: hoehrmann $ 
12
 
    $Date: 2003/05/25 03:22:20 $ 
13
 
    $Revision: 1.6 $ 
 
11
    $Author: arnaud02 $ 
 
12
    $Date: 2006/09/12 15:14:44 $ 
 
13
    $Revision: 1.8 $ 
14
14
 
15
15
*/
16
16
 
17
17
#include "forward.h"
18
18
 
19
19
/* entity starting with "&" returns zero on error */
20
 
uint    EntityCode( ctmbstr name, uint versions );
21
 
ctmbstr EntityName( uint charCode, uint versions );
22
 
Bool    EntityInfo( ctmbstr name, Bool isXml, uint* code, uint* versions );
 
20
/* uint    EntityCode( ctmbstr name, uint versions ); */
 
21
ctmbstr TY_(EntityName)( uint charCode, uint versions );
 
22
Bool    TY_(EntityInfo)( ctmbstr name, Bool isXml, uint* code, uint* versions );
23
23
 
24
24
#endif /* __ENTITIES_H__ */