diff options
author | Hiltjo Posthuma <hiltjo@codemadness.org> | 2015-09-09 00:23:11 +0200 |
---|---|---|
committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2015-09-09 00:23:11 +0200 |
commit | dab883320eada92534d73bede6e0df1b625058ab (patch) | |
tree | 84e822951bebce32361032fb76a9b37401236dc3 | |
parent | 11666ed237972157a472a7a4774b72d0588d1c54 (diff) |
xml.h: fix typo in function declaration
-rw-r--r-- | xml.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -39,6 +39,6 @@ typedef struct xmlparser { int xml_codepointtoutf8(uint32_t, uint32_t *); ssize_t xml_entitytostr(const char *, char *, size_t); ssize_t xml_namedentitytostr(const char *, char *, size_t); -ssize_t xml_numericetitytostr(const char *, char *, size_t); +ssize_t xml_numericentitytostr(const char *, char *, size_t); -void xml_parse(XMLParser *); +void xml_parse(XMLParser *); |