mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 11:37:35 +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
21 lines
596 B
C
21 lines
596 B
C
#ifndef __CHARSETS_H__
|
|
#define __CHARSETS_H__
|
|
#include "third_party/tidy/access.h"
|
|
#include "third_party/tidy/tidyplatform.h"
|
|
|
|
/* charsets.h -- character set information and mappings
|
|
|
|
(c) 1998-2021 (W3C) MIT, ERCIM, Keio University
|
|
See tidy.h for the copyright notice.
|
|
|
|
*/
|
|
|
|
uint TY_(GetEncodingIdFromName)(ctmbstr name);
|
|
uint TY_(GetEncodingIdFromCodePage)(uint cp);
|
|
uint TY_(GetEncodingCodePageFromName)(ctmbstr name);
|
|
uint TY_(GetEncodingCodePageFromId)(uint id);
|
|
ctmbstr TY_(GetEncodingNameFromId)(uint id);
|
|
ctmbstr TY_(GetEncodingNameFromCodePage)(uint cp);
|
|
|
|
#endif /* __CHARSETS_H__ */
|
|
|