⚠️ Warning: This is a draft ⚠️

This means it might contain formatting issues, incorrect code, conceptual problems, or other severe issues.

If you want to help to improve and eventually enable this page, please fork RosettaGit's repository and open a merge request on GitHub.

{{library}}

The library '''libxml''' is a software library for parsing XML documents and it is part, through [[wp:GNOME|GNOME]], of the [[wp:GNU Project|GNU Project]].

Several bindings for several languages exist.

Homepage is at [http://xmlsoft.org/index.html Libxml2 homepage]

To compile a sample program that use the libxml2: gcc -o example -I /usr/include/libxml2 -lxml2 example.c

If libxml2 headers are in the same folder as the Standard C headers, then the following will work : gcc -o example -lxml2 example.c