There is no official language binding of the DOM for C, so I am not sure
what a "compliant" XML toolkit would be. There are, however, a number of
toolkits that support DOM-like access to XML documents for C programs,
for example, libxml2, and gdome2.
I am trying to write a parser for another markup language. To make
interoperability between XML and that markup language (and possibly
others) easier I believe that the best way to do things is to parse
the document into a common data structure. So in order to achieve that
I am looking for is a XML parser written in C which implements a DOM
tree datastructure that supports the requirements defined in the W3C's
DOM level 1 specifications.
I'm looking into libxml2. Looks interesting. Are there more libraries
like these?
Thanks for the help
Rui Maciel