Add w3c html tidy

This commit is contained in:
Justine Tunney 2022-06-09 06:33:31 -07:00
parent ecc8962555
commit 3c7ae0fc72
63 changed files with 56239 additions and 0 deletions

22
third_party/tidy/charsets.h vendored Normal file
View file

@ -0,0 +1,22 @@
#ifndef __CHARSETS_H__
#define __CHARSETS_H__
#include "third_party/tidy/access.h"
#include "third_party/tidy/tidyplatform.h"
/* clang-format off */
/* 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__ */