summaryrefslogtreecommitdiff
path: root/README.xml
diff options
context:
space:
mode:
Diffstat (limited to 'README.xml')
-rw-r--r--README.xml17
1 files changed, 0 insertions, 17 deletions
diff --git a/README.xml b/README.xml
index c949da5..c531ef3 100644
--- a/README.xml
+++ b/README.xml
@@ -53,23 +53,6 @@ Interface / API
Should be trivial, see xml.c and xml.h and the examples below.
-The most minimal implementation to read and parse from fd 0 (stdin) is:
-
- #include <stdio.h>
-
- #include "xml.h"
-
- static XMLParser x;
-
- int
- main(void)
- {
- x.getnext = getchar;
- xml_parse(&x);
-
- return 0;
- }
-
Examples
--------