sfeed

simple feed reader - forked from git.codemadness.org/sfeed
git clone git://src.gearsix.net/sfeed
Log | Files | Refs | Atom | README | LICENSE

commit 45fd1505051a4c9c8e20c477d4ea62cfd7535276
parent fddbcbb7125413780de042c410adb75ed0ea055f
Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date:   Sun, 23 Aug 2015 17:05:54 +0200

README.xml: remove example, just check examples listed

Diffstat:
MREADME.xml | 17-----------------
1 file changed, 0 insertions(+), 17 deletions(-)

diff --git 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 --------