mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 03:27:39 +00:00
fa20edc44d
- Remove most __ASSEMBLER__ __LINKER__ ifdefs - Rename libc/intrin/bits.h to libc/serialize.h - Block pthread cancelation in fchmodat() polyfill - Remove `clang-format off` statements in third_party
18 lines
504 B
C
18 lines
504 B
C
#ifndef __ENTITIES_H__
|
|
#define __ENTITIES_H__
|
|
|
|
/* entities.h -- recognize character entities
|
|
|
|
(c) 1998-2006 (W3C) MIT, ERCIM, Keio University
|
|
See tidy.h for the copyright notice.
|
|
|
|
*/
|
|
|
|
#include "third_party/tidy/forward.h"
|
|
|
|
/* entity starting with "&" returns zero on error */
|
|
/* uint EntityCode( ctmbstr name, uint versions ); */
|
|
ctmbstr TY_(EntityName)( uint charCode, uint versions );
|
|
Bool TY_(EntityInfo)( ctmbstr name, Bool isXml, uint* code, uint* versions );
|
|
|
|
#endif /* __ENTITIES_H__ */
|