]> granicus.if.org Git - esp-idf/commit
components/expat: add XML parse feature
authorliuhan <liuhan@espressif.com>
Thu, 25 Aug 2016 08:40:23 +0000 (16:40 +0800)
committerliuhan <liuhan@espressif.com>
Thu, 25 Aug 2016 08:40:23 +0000 (16:40 +0800)
commit6e0bf01f25d2606c4db0636b6e82ab99620acd0b
tree98ac5c561a669212ad389183707c091c442ffbba
parentf4b3820ecdacd27576f8a038827144531f81d6e7
components/expat: add XML parse feature

Develop and Compile XML Parse based on XMPP protocol, see expat file.
26 files changed:
components/expat/COPYING [new file with mode: 0644]
components/expat/Makefile [new file with mode: 0644]
components/expat/README [new file with mode: 0644]
components/expat/include/expat/ascii.h [new file with mode: 0644]
components/expat/include/expat/asciitab.h [new file with mode: 0644]
components/expat/include/expat/expat.h [new file with mode: 0644]
components/expat/include/expat/expat_config.h [new file with mode: 0644]
components/expat/include/expat/expat_external.h [new file with mode: 0644]
components/expat/include/expat/iasciitab.h [new file with mode: 0644]
components/expat/include/expat/internal.h [new file with mode: 0644]
components/expat/include/expat/latin1tab.h [new file with mode: 0644]
components/expat/include/expat/nametab.h [new file with mode: 0644]
components/expat/include/expat/utf8tab.h [new file with mode: 0644]
components/expat/include/expat/xmlrole.h [new file with mode: 0644]
components/expat/include/expat/xmltok.h [new file with mode: 0644]
components/expat/include/expat/xmltok_impl.h [new file with mode: 0644]
components/expat/library/xmlparse.c [new file with mode: 0644]
components/expat/library/xmlrole.c [new file with mode: 0644]
components/expat/library/xmltok.c [new file with mode: 0644]
components/expat/library/xmltok_impl.c [new file with mode: 0644]
components/expat/library/xmltok_ns.c [new file with mode: 0644]
components/expat/port/chardata.c [new file with mode: 0644]
components/expat/port/expat_element.c [new file with mode: 0644]
components/expat/port/include/chardata.h [new file with mode: 0644]
components/expat/port/include/minicheck.h [new file with mode: 0644]
components/expat/port/minicheck.c [new file with mode: 0644]