From: bigbinc03
Subject: lisp and c, C++ integration
Date: 
Message-ID: <2d3f2012.0310040802.1ec5bcb@posting.google.com>
does lisp have xml style functionality.  For example from C/java code
I can parse xml files, can I do this with a lisp implementation.

Berlin Brown

From: Edi Weitz
Subject: Re: lisp and c, C++ integration
Date: 
Message-ID: <87smm99dxb.fsf@bird.agharta.de>
On 4 Oct 2003 09:02:27 -0700, ·········@yahoo.com (bigbinc03) wrote:

> does lisp have xml style functionality.  For example from C/java
> code I can parse xml files, can I do this with a lisp
> implementation.

Yes.

  <http://www.cliki.net/XML>
  <http://opensource.franz.com/xmlutils/index.html>

Edi.
From: Rene van Bevern
Subject: Re: lisp and c, C++ integration
Date: 
Message-ID: <slrnbntt5i.1mk.rvb@negoyl.vb-network>
On 4 Oct 2003 09:02:27 -0700, bigbinc03 <·········@yahoo.com> wrote:
> does lisp have xml style functionality.  For example from C/java code
> I can parse xml files, can I do this with a lisp implementation.

yes you can, URLs were posted, i just wanted to add, that if you only
want to parse the files with lisp, consider that S-Expressions are
a lot easier to parse and handle within a LISP program than XML.

If the files are going to be read by C or C++ (as this is what the
topic suggests) using XML with given parser libraries might be an easier
task.

	Rene