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
Our Free Plans just got better! | Auth0
You asked, we delivered! Auth0 is excited to expand our Free and Paid plans to include more options so you can focus on building, deploying, and scaling applications without having to worry about your security. Auth0 now, thank yourself later.
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.