From 64f089d0b742dc2347cf671549f31f485b0a8c41 Mon Sep 17 00:00:00 2001 From: Hiltjo Posthuma Date: Tue, 21 Aug 2018 20:09:33 +0200 Subject: xml: interface change: make some functions private ... this does not expose the uint* types either. --- xml.h | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'xml.h') 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 *); -- cgit v1.2.3