summaryrefslogtreecommitdiff
path: root/xml.h
diff options
context:
space:
mode:
authorHiltjo Posthuma <hiltjo@codemadness.org>2018-08-21 20:09:33 +0200
committerHiltjo Posthuma <hiltjo@codemadness.org>2018-08-21 20:09:33 +0200
commit64f089d0b742dc2347cf671549f31f485b0a8c41 (patch)
treeca70dcfc78c40a0ef23b9f94ddde1d45a5d22ddc /xml.h
parent063717bbd69622a53b2ff6a44d27e471460287b2 (diff)
xml: interface change: make some functions private
... this does not expose the uint* types either.
Diffstat (limited to 'xml.h')
-rw-r--r--xml.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/xml.h b/xml.h
index 192ec72..657fa0d 100644
--- a/xml.h
+++ b/xml.h
@@ -36,9 +36,5 @@ typedef struct xmlparser {
char data[BUFSIZ];
} 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_numericentitytostr(const char *, char *, size_t);
-
-void xml_parse(XMLParser *);
+int xml_entitytostr(const char *, char *, size_t);
+void xml_parse(XMLParser *);