From: Cyrille Duret cduret@gmail.com Subject: [gambit-list] problem with ffi and libxml2 Date: Tue, 17 Jul 2012 10:13:10 +0200
hello, I have problem to parse xml string with ffi and libxml2.
My code is in the test file libxml-raw.scm :
(c-declare #<<end
#include <stdlib.h> #include <libxml/xmlreader.h>
xmlTextReaderPtr create_reader(const char* buffer, size_t len) { return xmlReaderForMemory(buffer, len, "_.xml", NULL, 0); }
What are the major advantages of using libxml2 xmlreader with ffi over using sxml?
Klaus Schilling