summaryrefslogtreecommitdiff
path: root/xml.h
diff options
context:
space:
mode:
authorHiltjo Posthuma <hiltjo@codemadness.org>2020-09-19 16:38:21 +0200
committerHiltjo Posthuma <hiltjo@codemadness.org>2020-10-09 11:27:06 +0200
commit95f025d9bcc4b3d1e09a5790bb9ee2cb89ad4cf1 (patch)
tree2cd71da0d06cbe62ce3a0f6c363dc7a3c76a4748 /xml.h
parent88208d5ffda5cfbf03901038b41afae703f0d172 (diff)
xml.c: remove buffering of comment data, which is unused anyway
Diffstat (limited to 'xml.h')
-rw-r--r--xml.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/xml.h b/xml.h
index 00aae86..7b361d9 100644
--- a/xml.h
+++ b/xml.h
@@ -16,9 +16,6 @@ typedef struct xmlparser {
void (*xmlcdatastart)(struct xmlparser *);
void (*xmlcdata)(struct xmlparser *, const char *, size_t);
void (*xmlcdataend)(struct xmlparser *);
- void (*xmlcommentstart)(struct xmlparser *);
- void (*xmlcomment)(struct xmlparser *, const char *, size_t);
- void (*xmlcommentend)(struct xmlparser *);
void (*xmldata)(struct xmlparser *, const char *, size_t);
void (*xmldataend)(struct xmlparser *);
void (*xmldataentity)(struct xmlparser *, const char *, size_t);