summaryrefslogtreecommitdiff
path: root/README.xml
diff options
context:
space:
mode:
authorHiltjo Posthuma <hiltjo@codemadness.org>2018-08-26 15:00:43 +0200
committerHiltjo Posthuma <hiltjo@codemadness.org>2018-08-26 15:00:43 +0200
commit1baf6462562796680594492b7c6614c0bd5fcbb3 (patch)
tree8c670c0c795ce60fa129c0300da8b6d5c797db59 /README.xml
parent9d96397cef3d75f2af96b7a31bf2aef910346b0c (diff)
xml: use ANSI types and struct initialization
long is atleast 32-bits, codepointtoutf8() works with >= 32-bit types. Valid codepoint ranges are not larger than this. unsigned char is not needed because converted unicode bytes don't use this range. tested all valid codepoints and output on amd64, i386 and SPARC64.
Diffstat (limited to 'README.xml')
-rw-r--r--README.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.xml b/README.xml
index 091ca18..d9afed8 100644
--- a/README.xml
+++ b/README.xml
@@ -12,7 +12,7 @@ Features
--------
- Relatively small parser.
-- Pretty simple API comparable with libexpat.
+- Pretty simple API.
- Pretty fast.
- Portable
- No dynamic memory allocation.