├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── ci-mac-os.yml │ └── ci-ubuntu.yml ├── .gitignore ├── CMakeLists.txt ├── LICENSE.txt ├── README.md ├── docs ├── ARCHITECTURE.md ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── INSTALLATION.md └── assets │ ├── arch_img_1.png │ ├── arch_img_2.png │ ├── logo-256.png │ └── logo.png ├── examples ├── README.md ├── working_with_cxml_config.c ├── working_with_cxml_query_part_1.c ├── working_with_cxml_query_part_2.c ├── working_with_cxml_query_part_3.c ├── working_with_cxml_sax_part_1.c ├── working_with_cxml_sax_part_2.c ├── working_with_cxml_sax_part_3.c └── working_with_cxml_xpath.c ├── include ├── core │ ├── cxcomm.h │ ├── cxconfig.h │ ├── cxdefs.h │ ├── cxgrptable.h │ ├── cxlist.h │ ├── cxliteral.h │ ├── cxlrucache.h │ ├── cxmem.h │ ├── cxmset.h │ ├── cxstack.h │ ├── cxstr.h │ └── cxtable.h ├── cxml │ └── cxml.h ├── query │ ├── cxqapi.h │ └── cxql.h ├── sax │ └── cxsax.h ├── utils │ ├── cxutf8hook.h │ └── cxutils.h ├── xml │ ├── cxlexer.h │ ├── cxparser.h │ ├── cxprinter.h │ ├── cxscope.h │ └── cxstream.h └── xpath │ ├── cxxpast.h │ ├── cxxpcontext.h │ ├── cxxpdata.h │ ├── cxxpeval.h │ ├── cxxplexer.h │ ├── cxxplib.h │ ├── cxxpparser.h │ ├── cxxpresolver.h │ └── cxxpvisitors.h ├── src ├── core │ ├── cxconfig.c │ ├── cxdefs.c │ ├── cxgrptable.c │ ├── cxlist.c │ ├── cxliteral.c │ ├── cxlrucache.c │ ├── cxmem.c │ ├── cxmset.c │ ├── cxstack.c │ ├── cxstr.c │ └── cxtable.c ├── cxml │ └── cxml.c ├── query │ ├── cxqapi.c │ └── cxql.c ├── sax │ └── cxsax.c ├── utils │ ├── cxutf8hook.c │ └── cxutils.c ├── xml │ ├── cxlexer.c │ ├── cxparser.c │ ├── cxprinter.c │ ├── cxscope.c │ └── cxstream.c └── xpath │ ├── cxxpcontext.c │ ├── cxxpdata.c │ ├── cxxpeval.c │ ├── cxxplexer.c │ ├── cxxplib.c │ ├── cxxpmemdeb.c │ ├── cxxpopt.c │ ├── cxxpparser.c │ └── cxxpresolver.c └── tests ├── README.md ├── core ├── cxdefs_test.c ├── cxgrptable_test.c ├── cxlist_test.c ├── cxliteral_test.c ├── cxlrucache_test.c ├── cxmem_test.c ├── cxmset_test.c ├── cxstack_test.c ├── cxstr_test.c └── cxtable_test.c ├── cxfixture.c ├── cxfixture.h ├── cxtest.h ├── data ├── cdata.xml ├── df_xml_3.xml ├── foo.xml ├── ugly.xml ├── wf_xml_1.xml ├── wf_xml_2.xml ├── wf_xml_3.xml ├── wf_xml_4.xml ├── wf_xml_5.xml └── wf_xml_8.xml ├── query └── cxqapi_test.c ├── sax └── cxsax_test.c ├── test.c ├── utils └── cxutils_test.c ├── xml ├── cxlexer_test.c ├── cxparser_test.c └── cxprinter_test.c └── xpath └── cxxpath_test.c /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/ci-mac-os.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/.github/workflows/ci-mac-os.yml -------------------------------------------------------------------------------- /.github/workflows/ci-ubuntu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/.github/workflows/ci-ubuntu.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/README.md -------------------------------------------------------------------------------- /docs/ARCHITECTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/docs/ARCHITECTURE.md -------------------------------------------------------------------------------- /docs/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ### CXML Changelog -------------------------------------------------------------------------------- /docs/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/docs/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/INSTALLATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/docs/INSTALLATION.md -------------------------------------------------------------------------------- /docs/assets/arch_img_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/docs/assets/arch_img_1.png -------------------------------------------------------------------------------- /docs/assets/arch_img_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/docs/assets/arch_img_2.png -------------------------------------------------------------------------------- /docs/assets/logo-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/docs/assets/logo-256.png -------------------------------------------------------------------------------- /docs/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/docs/assets/logo.png -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/working_with_cxml_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/examples/working_with_cxml_config.c -------------------------------------------------------------------------------- /examples/working_with_cxml_query_part_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/examples/working_with_cxml_query_part_1.c -------------------------------------------------------------------------------- /examples/working_with_cxml_query_part_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/examples/working_with_cxml_query_part_2.c -------------------------------------------------------------------------------- /examples/working_with_cxml_query_part_3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/examples/working_with_cxml_query_part_3.c -------------------------------------------------------------------------------- /examples/working_with_cxml_sax_part_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/examples/working_with_cxml_sax_part_1.c -------------------------------------------------------------------------------- /examples/working_with_cxml_sax_part_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/examples/working_with_cxml_sax_part_2.c -------------------------------------------------------------------------------- /examples/working_with_cxml_sax_part_3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/examples/working_with_cxml_sax_part_3.c -------------------------------------------------------------------------------- /examples/working_with_cxml_xpath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/examples/working_with_cxml_xpath.c -------------------------------------------------------------------------------- /include/core/cxcomm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/include/core/cxcomm.h -------------------------------------------------------------------------------- /include/core/cxconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/include/core/cxconfig.h -------------------------------------------------------------------------------- /include/core/cxdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/include/core/cxdefs.h -------------------------------------------------------------------------------- /include/core/cxgrptable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/include/core/cxgrptable.h -------------------------------------------------------------------------------- /include/core/cxlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/include/core/cxlist.h -------------------------------------------------------------------------------- /include/core/cxliteral.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/include/core/cxliteral.h -------------------------------------------------------------------------------- /include/core/cxlrucache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/include/core/cxlrucache.h -------------------------------------------------------------------------------- /include/core/cxmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/include/core/cxmem.h -------------------------------------------------------------------------------- /include/core/cxmset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/include/core/cxmset.h -------------------------------------------------------------------------------- /include/core/cxstack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/include/core/cxstack.h -------------------------------------------------------------------------------- /include/core/cxstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/include/core/cxstr.h -------------------------------------------------------------------------------- /include/core/cxtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/include/core/cxtable.h -------------------------------------------------------------------------------- /include/cxml/cxml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/include/cxml/cxml.h -------------------------------------------------------------------------------- /include/query/cxqapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/include/query/cxqapi.h -------------------------------------------------------------------------------- /include/query/cxql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/include/query/cxql.h -------------------------------------------------------------------------------- /include/sax/cxsax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/include/sax/cxsax.h -------------------------------------------------------------------------------- /include/utils/cxutf8hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/include/utils/cxutf8hook.h -------------------------------------------------------------------------------- /include/utils/cxutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/include/utils/cxutils.h -------------------------------------------------------------------------------- /include/xml/cxlexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/include/xml/cxlexer.h -------------------------------------------------------------------------------- /include/xml/cxparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/include/xml/cxparser.h -------------------------------------------------------------------------------- /include/xml/cxprinter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/include/xml/cxprinter.h -------------------------------------------------------------------------------- /include/xml/cxscope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/include/xml/cxscope.h -------------------------------------------------------------------------------- /include/xml/cxstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/include/xml/cxstream.h -------------------------------------------------------------------------------- /include/xpath/cxxpast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/include/xpath/cxxpast.h -------------------------------------------------------------------------------- /include/xpath/cxxpcontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/include/xpath/cxxpcontext.h -------------------------------------------------------------------------------- /include/xpath/cxxpdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/include/xpath/cxxpdata.h -------------------------------------------------------------------------------- /include/xpath/cxxpeval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/include/xpath/cxxpeval.h -------------------------------------------------------------------------------- /include/xpath/cxxplexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/include/xpath/cxxplexer.h -------------------------------------------------------------------------------- /include/xpath/cxxplib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/include/xpath/cxxplib.h -------------------------------------------------------------------------------- /include/xpath/cxxpparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/include/xpath/cxxpparser.h -------------------------------------------------------------------------------- /include/xpath/cxxpresolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/include/xpath/cxxpresolver.h -------------------------------------------------------------------------------- /include/xpath/cxxpvisitors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/include/xpath/cxxpvisitors.h -------------------------------------------------------------------------------- /src/core/cxconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/src/core/cxconfig.c -------------------------------------------------------------------------------- /src/core/cxdefs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/src/core/cxdefs.c -------------------------------------------------------------------------------- /src/core/cxgrptable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/src/core/cxgrptable.c -------------------------------------------------------------------------------- /src/core/cxlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/src/core/cxlist.c -------------------------------------------------------------------------------- /src/core/cxliteral.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/src/core/cxliteral.c -------------------------------------------------------------------------------- /src/core/cxlrucache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/src/core/cxlrucache.c -------------------------------------------------------------------------------- /src/core/cxmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/src/core/cxmem.c -------------------------------------------------------------------------------- /src/core/cxmset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/src/core/cxmset.c -------------------------------------------------------------------------------- /src/core/cxstack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/src/core/cxstack.c -------------------------------------------------------------------------------- /src/core/cxstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/src/core/cxstr.c -------------------------------------------------------------------------------- /src/core/cxtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/src/core/cxtable.c -------------------------------------------------------------------------------- /src/cxml/cxml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/src/cxml/cxml.c -------------------------------------------------------------------------------- /src/query/cxqapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/src/query/cxqapi.c -------------------------------------------------------------------------------- /src/query/cxql.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/src/query/cxql.c -------------------------------------------------------------------------------- /src/sax/cxsax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/src/sax/cxsax.c -------------------------------------------------------------------------------- /src/utils/cxutf8hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/src/utils/cxutf8hook.c -------------------------------------------------------------------------------- /src/utils/cxutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/src/utils/cxutils.c -------------------------------------------------------------------------------- /src/xml/cxlexer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/src/xml/cxlexer.c -------------------------------------------------------------------------------- /src/xml/cxparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/src/xml/cxparser.c -------------------------------------------------------------------------------- /src/xml/cxprinter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/src/xml/cxprinter.c -------------------------------------------------------------------------------- /src/xml/cxscope.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/src/xml/cxscope.c -------------------------------------------------------------------------------- /src/xml/cxstream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/src/xml/cxstream.c -------------------------------------------------------------------------------- /src/xpath/cxxpcontext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/src/xpath/cxxpcontext.c -------------------------------------------------------------------------------- /src/xpath/cxxpdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/src/xpath/cxxpdata.c -------------------------------------------------------------------------------- /src/xpath/cxxpeval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/src/xpath/cxxpeval.c -------------------------------------------------------------------------------- /src/xpath/cxxplexer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/src/xpath/cxxplexer.c -------------------------------------------------------------------------------- /src/xpath/cxxplib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/src/xpath/cxxplib.c -------------------------------------------------------------------------------- /src/xpath/cxxpmemdeb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/src/xpath/cxxpmemdeb.c -------------------------------------------------------------------------------- /src/xpath/cxxpopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/src/xpath/cxxpopt.c -------------------------------------------------------------------------------- /src/xpath/cxxpparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/src/xpath/cxxpparser.c -------------------------------------------------------------------------------- /src/xpath/cxxpresolver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/src/xpath/cxxpresolver.c -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/core/cxdefs_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/tests/core/cxdefs_test.c -------------------------------------------------------------------------------- /tests/core/cxgrptable_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/tests/core/cxgrptable_test.c -------------------------------------------------------------------------------- /tests/core/cxlist_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/tests/core/cxlist_test.c -------------------------------------------------------------------------------- /tests/core/cxliteral_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/tests/core/cxliteral_test.c -------------------------------------------------------------------------------- /tests/core/cxlrucache_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/tests/core/cxlrucache_test.c -------------------------------------------------------------------------------- /tests/core/cxmem_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/tests/core/cxmem_test.c -------------------------------------------------------------------------------- /tests/core/cxmset_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/tests/core/cxmset_test.c -------------------------------------------------------------------------------- /tests/core/cxstack_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/tests/core/cxstack_test.c -------------------------------------------------------------------------------- /tests/core/cxstr_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/tests/core/cxstr_test.c -------------------------------------------------------------------------------- /tests/core/cxtable_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/tests/core/cxtable_test.c -------------------------------------------------------------------------------- /tests/cxfixture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/tests/cxfixture.c -------------------------------------------------------------------------------- /tests/cxfixture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/tests/cxfixture.h -------------------------------------------------------------------------------- /tests/cxtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/tests/cxtest.h -------------------------------------------------------------------------------- /tests/data/cdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/tests/data/cdata.xml -------------------------------------------------------------------------------- /tests/data/df_xml_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/tests/data/df_xml_3.xml -------------------------------------------------------------------------------- /tests/data/foo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/tests/data/foo.xml -------------------------------------------------------------------------------- /tests/data/ugly.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/tests/data/ugly.xml -------------------------------------------------------------------------------- /tests/data/wf_xml_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/tests/data/wf_xml_1.xml -------------------------------------------------------------------------------- /tests/data/wf_xml_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/tests/data/wf_xml_2.xml -------------------------------------------------------------------------------- /tests/data/wf_xml_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/tests/data/wf_xml_3.xml -------------------------------------------------------------------------------- /tests/data/wf_xml_4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/tests/data/wf_xml_4.xml -------------------------------------------------------------------------------- /tests/data/wf_xml_5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/tests/data/wf_xml_5.xml -------------------------------------------------------------------------------- /tests/data/wf_xml_8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/tests/data/wf_xml_8.xml -------------------------------------------------------------------------------- /tests/query/cxqapi_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/tests/query/cxqapi_test.c -------------------------------------------------------------------------------- /tests/sax/cxsax_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/tests/sax/cxsax_test.c -------------------------------------------------------------------------------- /tests/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/tests/test.c -------------------------------------------------------------------------------- /tests/utils/cxutils_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/tests/utils/cxutils_test.c -------------------------------------------------------------------------------- /tests/xml/cxlexer_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/tests/xml/cxlexer_test.c -------------------------------------------------------------------------------- /tests/xml/cxparser_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/tests/xml/cxparser_test.c -------------------------------------------------------------------------------- /tests/xml/cxprinter_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/tests/xml/cxprinter_test.c -------------------------------------------------------------------------------- /tests/xpath/cxxpath_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziord/cxml/HEAD/tests/xpath/cxxpath_test.c --------------------------------------------------------------------------------