aboutsummaryrefslogtreecommitdiffstats
path: root/src/codepoint.cpp
Commit message (Collapse)AuthorAgeFilesLines
* remove wchar supportstasoid2022-10-211-4/+4
| | | | closes issue #217
* Fixes building LiteHtmlSharp post separating src/indlude dirsTig Kindel2022-08-101-1/+1
|
* Add codepoint utility functions, testsJohn Poole2021-09-251-0/+82
Add codepoint utility functions that test whether a codepoint belongs to a set of codepoints (e.g., the valid codepoints for a URL scheme). Most of these functions are implemented using a compact lookup table so should be reasonably fast. The functions are based on similar functions from the css-parser branch that were introduced in commit 1698324920. We'll want to merge these sets of functions together once the branches are merged.