summaryrefslogtreecommitdiff
path: root/README.xml
diff options
context:
space:
mode:
authorHiltjo Posthuma <hiltjo@codemadness.org>2015-08-23 17:05:54 +0200
committerHiltjo Posthuma <hiltjo@codemadness.org>2015-08-23 17:05:54 +0200
commit45fd1505051a4c9c8e20c477d4ea62cfd7535276 (patch)
tree207806bea024ed6706b4da078105887f5a1b6bf6 /README.xml
parentfddbcbb7125413780de042c410adb75ed0ea055f (diff)
README.xml: remove example, just check examples listed
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
--------