summaryrefslogtreecommitdiff
path: root/include/samus/xml.h
diff options
context:
space:
mode:
authorTor Andersson <tor@ghostscript.com>2008-03-17 19:26:44 +0100
committerTor Andersson <tor@ghostscript.com>2008-03-17 19:26:44 +0100
commit168da05a84e78b209f10da076e25a70c46985e3c (patch)
tree71165b7780863df9696bbd41bb0a0a8fc883c4e2 /include/samus/xml.h
parent6d6313687bd06e15d0d4b2a40f6c3a2c8a87b086 (diff)
downloadmupdf-168da05a84e78b209f10da076e25a70c46985e3c.tar.xz
Scrap samus (aborted XPS parser) completely, part 2.
Diffstat (limited to 'include/samus/xml.h')
-rw-r--r--include/samus/xml.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/include/samus/xml.h b/include/samus/xml.h
deleted file mode 100644
index b72fbe56..00000000
--- a/include/samus/xml.h
+++ /dev/null
@@ -1,20 +0,0 @@
-/*
- * A simple XML parsing API based on Inferno's.
- * Under the surface this one uses expat and in-memory objects,
- * but that should not be visible through the API.
- */
-
-typedef struct sa_xmlparser_s sa_xmlparser;
-typedef struct sa_xmlitem_s sa_xmlitem;
-
-fz_error *sa_openxml(sa_xmlparser **spp, fz_stream *file, int ns);
-void sa_debugxml(sa_xmlitem *item, int level);
-void sa_closexml(sa_xmlparser *sp);
-
-sa_xmlitem *sa_xmlnext(sa_xmlparser *sp);
-void sa_xmldown(sa_xmlparser *sp);
-void sa_xmlup(sa_xmlparser *sp);
-
-char *sa_xmlname(sa_xmlitem *item);
-char *sa_xmlatt(sa_xmlitem *item, char *att);
-