2021-07-10 15:13:58 +00:00
|
|
|
#ifndef __CHARSETS_H__
|
|
|
|
#define __CHARSETS_H__
|
|
|
|
|
2011-11-17 02:44:16 +00:00
|
|
|
/* charsets.h -- character set information and mappings
|
|
|
|
|
2021-07-10 15:13:58 +00:00
|
|
|
(c) 1998-2021 (W3C) MIT, ERCIM, Keio University
|
2011-11-17 02:44:16 +00:00
|
|
|
See tidy.h for the copyright notice.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2021-07-10 15:13:58 +00:00
|
|
|
TY_PRIVATE uint TY_(GetEncodingIdFromName)(ctmbstr name);
|
|
|
|
TY_PRIVATE uint TY_(GetEncodingIdFromCodePage)(uint cp);
|
|
|
|
TY_PRIVATE uint TY_(GetEncodingCodePageFromName)(ctmbstr name);
|
|
|
|
TY_PRIVATE uint TY_(GetEncodingCodePageFromId)(uint id);
|
|
|
|
TY_PRIVATE ctmbstr TY_(GetEncodingNameFromId)(uint id);
|
|
|
|
TY_PRIVATE ctmbstr TY_(GetEncodingNameFromCodePage)(uint cp);
|
|
|
|
|
|
|
|
#endif /* __CHARSETS_H__ */
|
|
|
|
|