XML-Parse library is a lightweight set of functions for parsing, checking, and creating xml files. It can support stream-oriented, SAX or DOM parsing styles, and includes an optional xsd schema validator and graphical schema generator.
License
MIT LicenseFollow XML Parse Lib
Other Useful Business Software
Enterprise-grade ITSM, for every business
Freshservice is an intuitive, AI-powered platform that helps IT, operations, and business teams deliver exceptional service without the usual complexity. Automate repetitive tasks, resolve issues faster, and provide seamless support across the organization. From managing incidents and assets to driving smarter decisions, Freshservice makes it easy to stay efficient and scale with confidence.
Rate This Project
Login To Rate This Project
User Reviews
-
I find this to be a great utility library. It parses XML quickly and intergrated well into applications. For use in an application that stays running we did need to make a change to free memory allocated, as there were some malloc()/calloc() calls that weren't calling free() for their memory pointers, and the strdup() calls weren't calling free(). Prior to adding this code the library had sigificant memory leaks over time used in a program that stays running, but after the changes it was fine. If used in a program that runs, then exits, the changes to call free() aren't needed.