├── .envrc ├── .gitattributes ├── .github └── workflows │ └── build.yml ├── .gitignore ├── LICENSE ├── README.md ├── flake.lock ├── flake.nix ├── override ├── config │ ├── posix │ │ └── config.h │ └── win32 │ │ └── config.h └── include │ └── libxml │ └── xmlversion.h ├── shell.nix ├── update.sh ├── upstream.txt ├── upstream ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .gitlab-ci.yml ├── .gitlab-ci │ ├── Dockerfile │ ├── Test-Msvc.ps1 │ ├── llvm-symbolizer │ ├── setup_mingw.sh │ ├── test.sh │ └── test_cmake.sh ├── CMakeLists.txt ├── Copyright ├── HTMLparser.c ├── HTMLtree.c ├── MAINTAINERS.md ├── Makefile.am ├── NEWS ├── README.md ├── README.zOS ├── SAX.c ├── SAX2.c ├── autogen.sh ├── buf.c ├── build_glob.py ├── c14n.c ├── catalog.c ├── check-relaxng-test-suite.py ├── check-relaxng-test-suite2.py ├── check-xinclude-test-suite.py ├── check-xml-test-suite.py ├── check-xsddata-test-suite.py ├── chvalid.c ├── chvalid.def ├── config.h.cmake.in ├── configure.ac ├── dbgen.pl ├── dbgenattr.pl ├── debugXML.c ├── dict.c ├── encoding.c ├── entities.c ├── error.c ├── example │ ├── Makefile.am │ ├── gjobread.c │ └── gjobs.xml ├── fuzz │ ├── .gitignore │ ├── Makefile.am │ ├── README │ ├── fuzz.c │ ├── fuzz.h │ ├── genSeed.c │ ├── html.c │ ├── html.dict │ ├── html.options │ ├── regexp.c │ ├── regexp.dict │ ├── regexp.options │ ├── schema.c │ ├── schema.dict │ ├── schema.options │ ├── testFuzzer.c │ ├── uri.c │ ├── uri.options │ ├── valid.c │ ├── valid.options │ ├── xinclude.c │ ├── xinclude.options │ ├── xml.c │ ├── xml.dict │ ├── xml.options │ ├── xpath.c │ ├── xpath.dict │ └── xpath.options ├── genChRanges.py ├── genUnicode.py ├── gentest.py ├── global.data ├── globals.c ├── hash.c ├── include │ ├── Makefile.am │ ├── libxml │ │ ├── HTMLparser.h │ │ ├── HTMLtree.h │ │ ├── Makefile.am │ │ ├── SAX.h │ │ ├── SAX2.h │ │ ├── c14n.h │ │ ├── catalog.h │ │ ├── chvalid.h │ │ ├── debugXML.h │ │ ├── dict.h │ │ ├── encoding.h │ │ ├── entities.h │ │ ├── globals.h │ │ ├── hash.h │ │ ├── list.h │ │ ├── nanoftp.h │ │ ├── nanohttp.h │ │ ├── parser.h │ │ ├── parserInternals.h │ │ ├── pattern.h │ │ ├── relaxng.h │ │ ├── schemasInternals.h │ │ ├── schematron.h │ │ ├── threads.h │ │ ├── tree.h │ │ ├── uri.h │ │ ├── valid.h │ │ ├── xinclude.h │ │ ├── xlink.h │ │ ├── xmlIO.h │ │ ├── xmlautomata.h │ │ ├── xmlerror.h │ │ ├── xmlexports.h │ │ ├── xmlmemory.h │ │ ├── xmlmodule.h │ │ ├── xmlreader.h │ │ ├── xmlregexp.h │ │ ├── xmlsave.h │ │ ├── xmlschemas.h │ │ ├── xmlschemastypes.h │ │ ├── xmlstring.h │ │ ├── xmlunicode.h │ │ ├── xmlversion.h.in │ │ ├── xmlwriter.h │ │ ├── xpath.h │ │ ├── xpathInternals.h │ │ └── xpointer.h │ ├── private │ │ ├── Makefile.am │ │ ├── buf.h │ │ ├── dict.h │ │ ├── enc.h │ │ ├── entities.h │ │ ├── error.h │ │ ├── globals.h │ │ ├── html.h │ │ ├── io.h │ │ ├── memory.h │ │ ├── parser.h │ │ ├── regexp.h │ │ ├── save.h │ │ ├── string.h │ │ ├── threads.h │ │ ├── tree.h │ │ ├── xinclude.h │ │ ├── xpath.h │ │ └── xzlib.h │ ├── win32config.h │ └── wsockcompat.h ├── legacy.c ├── libxml-2.0-uninstalled.pc.in ├── libxml-2.0.pc.in ├── libxml.h ├── libxml.m4 ├── libxml2-config.cmake.cmake.in ├── libxml2-config.cmake.in ├── libxml2.doap ├── libxml2.syms ├── list.c ├── m4 │ ├── ac_try_compile2.m4 │ ├── ax_append_flag.m4 │ ├── ax_append_link_flags.m4 │ ├── ax_check_link_flag.m4 │ └── ax_require_defined.m4 ├── nanoftp.c ├── nanohttp.c ├── os400 │ ├── README400 │ ├── dlfcn │ │ ├── dlfcn.c │ │ └── dlfcn.h │ ├── iconv │ │ ├── README.iconv │ │ ├── bldcsndfa │ │ │ ├── bldcsndfa.c │ │ │ ├── ccsid_mibenum.dtd │ │ │ ├── ccsid_mibenum.xml │ │ │ └── character-sets.xhtml │ │ ├── ianatables.c │ │ ├── iconv.c │ │ └── iconv.h │ ├── initscript.sh │ ├── libxmlmain.c │ ├── libxmlrpg │ │ ├── DOCBparser.rpgle │ │ ├── HTMLparser.rpgle │ │ ├── HTMLtree.rpgle │ │ ├── SAX.rpgle │ │ ├── SAX2.rpgle │ │ ├── c14n.rpgle │ │ ├── catalog.rpgle │ │ ├── chvalid.rpgle │ │ ├── debugXML.rpgle │ │ ├── dict.rpgle │ │ ├── encoding.rpgle │ │ ├── entities.rpgle │ │ ├── globals.rpgle │ │ ├── hash.rpgle │ │ ├── list.rpgle │ │ ├── nanoftp.rpgle │ │ ├── nanohttp.rpgle │ │ ├── parser.rpgle │ │ ├── parserInternals.rpgle │ │ ├── pattern.rpgle │ │ ├── relaxng.rpgle │ │ ├── schemasInternals.rpgle │ │ ├── schematron.rpgle │ │ ├── threads.rpgle │ │ ├── transcode.rpgle │ │ ├── tree.rpgle │ │ ├── uri.rpgle │ │ ├── valid.rpgle │ │ ├── xinclude.rpgle │ │ ├── xlink.rpgle │ │ ├── xmlIO.rpgle │ │ ├── xmlTypesC.rpgle │ │ ├── xmlautomata.rpgle │ │ ├── xmlerror.rpgle │ │ ├── xmlexports.rpgle │ │ ├── xmlmemory.rpgle │ │ ├── xmlmodule.rpgle │ │ ├── xmlreader.rpgle │ │ ├── xmlregexp.rpgle │ │ ├── xmlsave.rpgle │ │ ├── xmlschemas.rpgle │ │ ├── xmlschemastypes.rpgle │ │ ├── xmlstdarg.rpgle │ │ ├── xmlstring.rpgle │ │ ├── xmlunicode.rpgle │ │ ├── xmlversion.rpgle.in │ │ ├── xmlwriter.rpgle │ │ ├── xpath.rpgle │ │ ├── xpathInternals.rpgle │ │ └── xpointer.rpgle │ ├── make-bldcsndfa.sh │ ├── make-include.sh │ ├── make-rpg.sh │ ├── make-src.sh │ ├── make.sh │ ├── os400config.h.in │ ├── rpgsupport.c │ ├── rpgsupport.h │ ├── transcode.c │ ├── transcode.h │ ├── wrappers.c │ ├── wrappers.h │ ├── xmlcatalog.cmd │ ├── xmlcatlgcl.c │ ├── xmllint.cmd │ └── xmllintcl.c ├── parser.c ├── parserInternals.c ├── pattern.c ├── python │ ├── .gitignore │ ├── Makefile.am │ ├── README │ ├── drv_libxml2.py │ ├── generator.py │ ├── libxml.c │ ├── libxml.py │ ├── libxml2-python-api.xml │ ├── libxml_wrap.h │ ├── setup.py.in │ ├── tests │ │ ├── Makefile.am │ │ ├── attribs.py │ │ ├── build.py │ │ ├── compareNodes.py │ │ ├── ctxterror.py │ │ ├── cutnpaste.py │ │ ├── dtdvalid.py │ │ ├── error.py │ │ ├── inbuf.py │ │ ├── indexes.py │ │ ├── input_callback.py │ │ ├── invalid.xml │ │ ├── nsdel.py │ │ ├── outbuf.py │ │ ├── push.py │ │ ├── pushSAX.py │ │ ├── pushSAXhtml.py │ │ ├── reader.py │ │ ├── reader2.py │ │ ├── reader3.py │ │ ├── reader4.py │ │ ├── reader5.py │ │ ├── reader6.py │ │ ├── reader7.py │ │ ├── reader8.py │ │ ├── readererr.py │ │ ├── readernext.py │ │ ├── regexp.py │ │ ├── relaxng.py │ │ ├── resolver.py │ │ ├── schema.py │ │ ├── serialize.py │ │ ├── sync.py │ │ ├── test.dtd │ │ ├── thread2.py │ │ ├── tst.py │ │ ├── tst.xml │ │ ├── tstLastError.py │ │ ├── tstURI.py │ │ ├── tstmem.py │ │ ├── tstxpath.py │ │ ├── valid.xml │ │ ├── validDTD.py │ │ ├── validRNG.py │ │ ├── validSchemas.py │ │ ├── validate.py │ │ ├── walker.py │ │ ├── xpath.py │ │ ├── xpathext.py │ │ ├── xpathleak.py │ │ ├── xpathns.py │ │ └── xpathret.py │ └── types.c ├── relaxng.c ├── rngparser.c ├── runsuite.c ├── runtest.c ├── runxmlconf.c ├── schematron.c ├── testModule.c ├── testOOM.c ├── testOOMlib.c ├── testOOMlib.h ├── testThreads.c ├── testapi.c ├── testchar.c ├── testdict.c ├── testdso.c ├── testlimits.c ├── testrecurse.c ├── threads.c ├── timsort.h ├── tree.c ├── trio.c ├── trio.h ├── triodef.h ├── trionan.c ├── trionan.h ├── triop.h ├── triostr.c ├── triostr.h ├── uri.c ├── valid.c ├── vms │ ├── build_libxml.com │ ├── config.vms │ ├── diffs.vms │ └── readme.vms ├── win32 │ ├── Makefile.bcb │ ├── Makefile.mingw │ ├── Makefile.msvc │ ├── Readme.txt │ ├── configure.js │ └── libxml2.rc ├── xinclude.c ├── xlink.c ├── xml2-config.in ├── xmlIO.c ├── xmlcatalog.c ├── xmllint.c ├── xmlmemory.c ├── xmlmodule.c ├── xmlreader.c ├── xmlregexp.c ├── xmlsave.c ├── xmlschemas.c ├── xmlschemastypes.c ├── xmlstring.c ├── xmlunicode.c ├── xmlwriter.c ├── xpath.c ├── xpointer.c ├── xstc │ ├── .gitignore │ ├── Makefile.am │ ├── fixup-tests.py │ ├── xstc-to-python.xsl │ └── xstc.py └── xzlib.c └── verify.sh /.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/.envrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | upstream/* linguist-vendored 2 | -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | zig-cache 2 | zig-out 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/README.md -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/flake.nix -------------------------------------------------------------------------------- /override/config/posix/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/override/config/posix/config.h -------------------------------------------------------------------------------- /override/config/win32/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/override/config/win32/config.h -------------------------------------------------------------------------------- /override/include/libxml/xmlversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/override/include/libxml/xmlversion.h -------------------------------------------------------------------------------- /shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/shell.nix -------------------------------------------------------------------------------- /update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/update.sh -------------------------------------------------------------------------------- /upstream.txt: -------------------------------------------------------------------------------- 1 | 58de9d31da4d0e8cb6bcf7f5e99714f9df2c4411 2 | -------------------------------------------------------------------------------- /upstream/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/.editorconfig -------------------------------------------------------------------------------- /upstream/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/.gitattributes -------------------------------------------------------------------------------- /upstream/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/.gitignore -------------------------------------------------------------------------------- /upstream/.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/.gitlab-ci.yml -------------------------------------------------------------------------------- /upstream/.gitlab-ci/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/.gitlab-ci/Dockerfile -------------------------------------------------------------------------------- /upstream/.gitlab-ci/Test-Msvc.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/.gitlab-ci/Test-Msvc.ps1 -------------------------------------------------------------------------------- /upstream/.gitlab-ci/llvm-symbolizer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/.gitlab-ci/llvm-symbolizer -------------------------------------------------------------------------------- /upstream/.gitlab-ci/setup_mingw.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/.gitlab-ci/setup_mingw.sh -------------------------------------------------------------------------------- /upstream/.gitlab-ci/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/.gitlab-ci/test.sh -------------------------------------------------------------------------------- /upstream/.gitlab-ci/test_cmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/.gitlab-ci/test_cmake.sh -------------------------------------------------------------------------------- /upstream/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/CMakeLists.txt -------------------------------------------------------------------------------- /upstream/Copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/Copyright -------------------------------------------------------------------------------- /upstream/HTMLparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/HTMLparser.c -------------------------------------------------------------------------------- /upstream/HTMLtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/HTMLtree.c -------------------------------------------------------------------------------- /upstream/MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/MAINTAINERS.md -------------------------------------------------------------------------------- /upstream/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/Makefile.am -------------------------------------------------------------------------------- /upstream/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/NEWS -------------------------------------------------------------------------------- /upstream/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/README.md -------------------------------------------------------------------------------- /upstream/README.zOS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/README.zOS -------------------------------------------------------------------------------- /upstream/SAX.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/SAX.c -------------------------------------------------------------------------------- /upstream/SAX2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/SAX2.c -------------------------------------------------------------------------------- /upstream/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/autogen.sh -------------------------------------------------------------------------------- /upstream/buf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/buf.c -------------------------------------------------------------------------------- /upstream/build_glob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/build_glob.py -------------------------------------------------------------------------------- /upstream/c14n.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/c14n.c -------------------------------------------------------------------------------- /upstream/catalog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/catalog.c -------------------------------------------------------------------------------- /upstream/check-relaxng-test-suite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/check-relaxng-test-suite.py -------------------------------------------------------------------------------- /upstream/check-relaxng-test-suite2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/check-relaxng-test-suite2.py -------------------------------------------------------------------------------- /upstream/check-xinclude-test-suite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/check-xinclude-test-suite.py -------------------------------------------------------------------------------- /upstream/check-xml-test-suite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/check-xml-test-suite.py -------------------------------------------------------------------------------- /upstream/check-xsddata-test-suite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/check-xsddata-test-suite.py -------------------------------------------------------------------------------- /upstream/chvalid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/chvalid.c -------------------------------------------------------------------------------- /upstream/chvalid.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/chvalid.def -------------------------------------------------------------------------------- /upstream/config.h.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/config.h.cmake.in -------------------------------------------------------------------------------- /upstream/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/configure.ac -------------------------------------------------------------------------------- /upstream/dbgen.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/dbgen.pl -------------------------------------------------------------------------------- /upstream/dbgenattr.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/dbgenattr.pl -------------------------------------------------------------------------------- /upstream/debugXML.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/debugXML.c -------------------------------------------------------------------------------- /upstream/dict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/dict.c -------------------------------------------------------------------------------- /upstream/encoding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/encoding.c -------------------------------------------------------------------------------- /upstream/entities.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/entities.c -------------------------------------------------------------------------------- /upstream/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/error.c -------------------------------------------------------------------------------- /upstream/example/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/example/Makefile.am -------------------------------------------------------------------------------- /upstream/example/gjobread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/example/gjobread.c -------------------------------------------------------------------------------- /upstream/example/gjobs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/example/gjobs.xml -------------------------------------------------------------------------------- /upstream/fuzz/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/fuzz/.gitignore -------------------------------------------------------------------------------- /upstream/fuzz/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/fuzz/Makefile.am -------------------------------------------------------------------------------- /upstream/fuzz/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/fuzz/README -------------------------------------------------------------------------------- /upstream/fuzz/fuzz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/fuzz/fuzz.c -------------------------------------------------------------------------------- /upstream/fuzz/fuzz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/fuzz/fuzz.h -------------------------------------------------------------------------------- /upstream/fuzz/genSeed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/fuzz/genSeed.c -------------------------------------------------------------------------------- /upstream/fuzz/html.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/fuzz/html.c -------------------------------------------------------------------------------- /upstream/fuzz/html.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/fuzz/html.dict -------------------------------------------------------------------------------- /upstream/fuzz/html.options: -------------------------------------------------------------------------------- 1 | [libfuzzer] 2 | timeout = 10 3 | -------------------------------------------------------------------------------- /upstream/fuzz/regexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/fuzz/regexp.c -------------------------------------------------------------------------------- /upstream/fuzz/regexp.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/fuzz/regexp.dict -------------------------------------------------------------------------------- /upstream/fuzz/regexp.options: -------------------------------------------------------------------------------- 1 | [libfuzzer] 2 | timeout = 5 3 | -------------------------------------------------------------------------------- /upstream/fuzz/schema.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/fuzz/schema.c -------------------------------------------------------------------------------- /upstream/fuzz/schema.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/fuzz/schema.dict -------------------------------------------------------------------------------- /upstream/fuzz/schema.options: -------------------------------------------------------------------------------- 1 | [libfuzzer] 2 | timeout = 20 3 | -------------------------------------------------------------------------------- /upstream/fuzz/testFuzzer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/fuzz/testFuzzer.c -------------------------------------------------------------------------------- /upstream/fuzz/uri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/fuzz/uri.c -------------------------------------------------------------------------------- /upstream/fuzz/uri.options: -------------------------------------------------------------------------------- 1 | [libfuzzer] 2 | timeout = 2 3 | -------------------------------------------------------------------------------- /upstream/fuzz/valid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/fuzz/valid.c -------------------------------------------------------------------------------- /upstream/fuzz/valid.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/fuzz/valid.options -------------------------------------------------------------------------------- /upstream/fuzz/xinclude.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/fuzz/xinclude.c -------------------------------------------------------------------------------- /upstream/fuzz/xinclude.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/fuzz/xinclude.options -------------------------------------------------------------------------------- /upstream/fuzz/xml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/fuzz/xml.c -------------------------------------------------------------------------------- /upstream/fuzz/xml.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/fuzz/xml.dict -------------------------------------------------------------------------------- /upstream/fuzz/xml.options: -------------------------------------------------------------------------------- 1 | [libfuzzer] 2 | timeout = 20 3 | -------------------------------------------------------------------------------- /upstream/fuzz/xpath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/fuzz/xpath.c -------------------------------------------------------------------------------- /upstream/fuzz/xpath.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/fuzz/xpath.dict -------------------------------------------------------------------------------- /upstream/fuzz/xpath.options: -------------------------------------------------------------------------------- 1 | [libfuzzer] 2 | timeout = 20 3 | -------------------------------------------------------------------------------- /upstream/genChRanges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/genChRanges.py -------------------------------------------------------------------------------- /upstream/genUnicode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/genUnicode.py -------------------------------------------------------------------------------- /upstream/gentest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/gentest.py -------------------------------------------------------------------------------- /upstream/global.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/global.data -------------------------------------------------------------------------------- /upstream/globals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/globals.c -------------------------------------------------------------------------------- /upstream/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/hash.c -------------------------------------------------------------------------------- /upstream/include/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/include/Makefile.am -------------------------------------------------------------------------------- /upstream/include/libxml/HTMLparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/include/libxml/HTMLparser.h -------------------------------------------------------------------------------- /upstream/include/libxml/HTMLtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/include/libxml/HTMLtree.h -------------------------------------------------------------------------------- /upstream/include/libxml/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/include/libxml/Makefile.am -------------------------------------------------------------------------------- /upstream/include/libxml/SAX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/include/libxml/SAX.h -------------------------------------------------------------------------------- /upstream/include/libxml/SAX2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/include/libxml/SAX2.h -------------------------------------------------------------------------------- /upstream/include/libxml/c14n.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/include/libxml/c14n.h -------------------------------------------------------------------------------- /upstream/include/libxml/catalog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/include/libxml/catalog.h -------------------------------------------------------------------------------- /upstream/include/libxml/chvalid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/include/libxml/chvalid.h -------------------------------------------------------------------------------- /upstream/include/libxml/debugXML.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/include/libxml/debugXML.h -------------------------------------------------------------------------------- /upstream/include/libxml/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/include/libxml/dict.h -------------------------------------------------------------------------------- /upstream/include/libxml/encoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/include/libxml/encoding.h -------------------------------------------------------------------------------- /upstream/include/libxml/entities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/include/libxml/entities.h -------------------------------------------------------------------------------- /upstream/include/libxml/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/include/libxml/globals.h -------------------------------------------------------------------------------- /upstream/include/libxml/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/include/libxml/hash.h -------------------------------------------------------------------------------- /upstream/include/libxml/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/include/libxml/list.h -------------------------------------------------------------------------------- /upstream/include/libxml/nanoftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/include/libxml/nanoftp.h -------------------------------------------------------------------------------- /upstream/include/libxml/nanohttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/include/libxml/nanohttp.h -------------------------------------------------------------------------------- /upstream/include/libxml/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/include/libxml/parser.h -------------------------------------------------------------------------------- /upstream/include/libxml/parserInternals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/include/libxml/parserInternals.h -------------------------------------------------------------------------------- /upstream/include/libxml/pattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/include/libxml/pattern.h -------------------------------------------------------------------------------- /upstream/include/libxml/relaxng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/include/libxml/relaxng.h -------------------------------------------------------------------------------- /upstream/include/libxml/schemasInternals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/include/libxml/schemasInternals.h -------------------------------------------------------------------------------- /upstream/include/libxml/schematron.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/include/libxml/schematron.h -------------------------------------------------------------------------------- /upstream/include/libxml/threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/include/libxml/threads.h -------------------------------------------------------------------------------- /upstream/include/libxml/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/include/libxml/tree.h -------------------------------------------------------------------------------- /upstream/include/libxml/uri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/include/libxml/uri.h -------------------------------------------------------------------------------- /upstream/include/libxml/valid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/include/libxml/valid.h -------------------------------------------------------------------------------- /upstream/include/libxml/xinclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/include/libxml/xinclude.h -------------------------------------------------------------------------------- /upstream/include/libxml/xlink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/include/libxml/xlink.h -------------------------------------------------------------------------------- /upstream/include/libxml/xmlIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/include/libxml/xmlIO.h -------------------------------------------------------------------------------- /upstream/include/libxml/xmlautomata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/include/libxml/xmlautomata.h -------------------------------------------------------------------------------- /upstream/include/libxml/xmlerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/include/libxml/xmlerror.h -------------------------------------------------------------------------------- /upstream/include/libxml/xmlexports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/include/libxml/xmlexports.h -------------------------------------------------------------------------------- /upstream/include/libxml/xmlmemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/include/libxml/xmlmemory.h -------------------------------------------------------------------------------- /upstream/include/libxml/xmlmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/include/libxml/xmlmodule.h -------------------------------------------------------------------------------- /upstream/include/libxml/xmlreader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/include/libxml/xmlreader.h -------------------------------------------------------------------------------- /upstream/include/libxml/xmlregexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/include/libxml/xmlregexp.h -------------------------------------------------------------------------------- /upstream/include/libxml/xmlsave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/include/libxml/xmlsave.h -------------------------------------------------------------------------------- /upstream/include/libxml/xmlschemas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/include/libxml/xmlschemas.h -------------------------------------------------------------------------------- /upstream/include/libxml/xmlschemastypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/include/libxml/xmlschemastypes.h -------------------------------------------------------------------------------- /upstream/include/libxml/xmlstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/include/libxml/xmlstring.h -------------------------------------------------------------------------------- /upstream/include/libxml/xmlunicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/include/libxml/xmlunicode.h -------------------------------------------------------------------------------- /upstream/include/libxml/xmlversion.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/include/libxml/xmlversion.h.in -------------------------------------------------------------------------------- /upstream/include/libxml/xmlwriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/include/libxml/xmlwriter.h -------------------------------------------------------------------------------- /upstream/include/libxml/xpath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/include/libxml/xpath.h -------------------------------------------------------------------------------- /upstream/include/libxml/xpathInternals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/include/libxml/xpathInternals.h -------------------------------------------------------------------------------- /upstream/include/libxml/xpointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/include/libxml/xpointer.h -------------------------------------------------------------------------------- /upstream/include/private/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/include/private/Makefile.am -------------------------------------------------------------------------------- /upstream/include/private/buf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/include/private/buf.h -------------------------------------------------------------------------------- /upstream/include/private/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/include/private/dict.h -------------------------------------------------------------------------------- /upstream/include/private/enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/include/private/enc.h -------------------------------------------------------------------------------- /upstream/include/private/entities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/include/private/entities.h -------------------------------------------------------------------------------- /upstream/include/private/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/include/private/error.h -------------------------------------------------------------------------------- /upstream/include/private/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/include/private/globals.h -------------------------------------------------------------------------------- /upstream/include/private/html.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/include/private/html.h -------------------------------------------------------------------------------- /upstream/include/private/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/include/private/io.h -------------------------------------------------------------------------------- /upstream/include/private/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/include/private/memory.h -------------------------------------------------------------------------------- /upstream/include/private/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/include/private/parser.h -------------------------------------------------------------------------------- /upstream/include/private/regexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/include/private/regexp.h -------------------------------------------------------------------------------- /upstream/include/private/save.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/include/private/save.h -------------------------------------------------------------------------------- /upstream/include/private/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/include/private/string.h -------------------------------------------------------------------------------- /upstream/include/private/threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/include/private/threads.h -------------------------------------------------------------------------------- /upstream/include/private/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/include/private/tree.h -------------------------------------------------------------------------------- /upstream/include/private/xinclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/include/private/xinclude.h -------------------------------------------------------------------------------- /upstream/include/private/xpath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/include/private/xpath.h -------------------------------------------------------------------------------- /upstream/include/private/xzlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/include/private/xzlib.h -------------------------------------------------------------------------------- /upstream/include/win32config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/include/win32config.h -------------------------------------------------------------------------------- /upstream/include/wsockcompat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/include/wsockcompat.h -------------------------------------------------------------------------------- /upstream/legacy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/legacy.c -------------------------------------------------------------------------------- /upstream/libxml-2.0-uninstalled.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/libxml-2.0-uninstalled.pc.in -------------------------------------------------------------------------------- /upstream/libxml-2.0.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/libxml-2.0.pc.in -------------------------------------------------------------------------------- /upstream/libxml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/libxml.h -------------------------------------------------------------------------------- /upstream/libxml.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/libxml.m4 -------------------------------------------------------------------------------- /upstream/libxml2-config.cmake.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/libxml2-config.cmake.cmake.in -------------------------------------------------------------------------------- /upstream/libxml2-config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/libxml2-config.cmake.in -------------------------------------------------------------------------------- /upstream/libxml2.doap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/libxml2.doap -------------------------------------------------------------------------------- /upstream/libxml2.syms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/libxml2.syms -------------------------------------------------------------------------------- /upstream/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/list.c -------------------------------------------------------------------------------- /upstream/m4/ac_try_compile2.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/m4/ac_try_compile2.m4 -------------------------------------------------------------------------------- /upstream/m4/ax_append_flag.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/m4/ax_append_flag.m4 -------------------------------------------------------------------------------- /upstream/m4/ax_append_link_flags.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/m4/ax_append_link_flags.m4 -------------------------------------------------------------------------------- /upstream/m4/ax_check_link_flag.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/m4/ax_check_link_flag.m4 -------------------------------------------------------------------------------- /upstream/m4/ax_require_defined.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/m4/ax_require_defined.m4 -------------------------------------------------------------------------------- /upstream/nanoftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/nanoftp.c -------------------------------------------------------------------------------- /upstream/nanohttp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/nanohttp.c -------------------------------------------------------------------------------- /upstream/os400/README400: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/os400/README400 -------------------------------------------------------------------------------- /upstream/os400/dlfcn/dlfcn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/os400/dlfcn/dlfcn.c -------------------------------------------------------------------------------- /upstream/os400/dlfcn/dlfcn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/os400/dlfcn/dlfcn.h -------------------------------------------------------------------------------- /upstream/os400/iconv/README.iconv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/os400/iconv/README.iconv -------------------------------------------------------------------------------- /upstream/os400/iconv/bldcsndfa/bldcsndfa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/os400/iconv/bldcsndfa/bldcsndfa.c -------------------------------------------------------------------------------- /upstream/os400/iconv/bldcsndfa/ccsid_mibenum.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/os400/iconv/bldcsndfa/ccsid_mibenum.dtd -------------------------------------------------------------------------------- /upstream/os400/iconv/bldcsndfa/ccsid_mibenum.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/os400/iconv/bldcsndfa/ccsid_mibenum.xml -------------------------------------------------------------------------------- /upstream/os400/iconv/bldcsndfa/character-sets.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/os400/iconv/bldcsndfa/character-sets.xhtml -------------------------------------------------------------------------------- /upstream/os400/iconv/ianatables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/os400/iconv/ianatables.c -------------------------------------------------------------------------------- /upstream/os400/iconv/iconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/os400/iconv/iconv.c -------------------------------------------------------------------------------- /upstream/os400/iconv/iconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/os400/iconv/iconv.h -------------------------------------------------------------------------------- /upstream/os400/initscript.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/os400/initscript.sh -------------------------------------------------------------------------------- /upstream/os400/libxmlmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/os400/libxmlmain.c -------------------------------------------------------------------------------- /upstream/os400/libxmlrpg/DOCBparser.rpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/os400/libxmlrpg/DOCBparser.rpgle -------------------------------------------------------------------------------- /upstream/os400/libxmlrpg/HTMLparser.rpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/os400/libxmlrpg/HTMLparser.rpgle -------------------------------------------------------------------------------- /upstream/os400/libxmlrpg/HTMLtree.rpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/os400/libxmlrpg/HTMLtree.rpgle -------------------------------------------------------------------------------- /upstream/os400/libxmlrpg/SAX.rpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/os400/libxmlrpg/SAX.rpgle -------------------------------------------------------------------------------- /upstream/os400/libxmlrpg/SAX2.rpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/os400/libxmlrpg/SAX2.rpgle -------------------------------------------------------------------------------- /upstream/os400/libxmlrpg/c14n.rpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/os400/libxmlrpg/c14n.rpgle -------------------------------------------------------------------------------- /upstream/os400/libxmlrpg/catalog.rpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/os400/libxmlrpg/catalog.rpgle -------------------------------------------------------------------------------- /upstream/os400/libxmlrpg/chvalid.rpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/os400/libxmlrpg/chvalid.rpgle -------------------------------------------------------------------------------- /upstream/os400/libxmlrpg/debugXML.rpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/os400/libxmlrpg/debugXML.rpgle -------------------------------------------------------------------------------- /upstream/os400/libxmlrpg/dict.rpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/os400/libxmlrpg/dict.rpgle -------------------------------------------------------------------------------- /upstream/os400/libxmlrpg/encoding.rpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/os400/libxmlrpg/encoding.rpgle -------------------------------------------------------------------------------- /upstream/os400/libxmlrpg/entities.rpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/os400/libxmlrpg/entities.rpgle -------------------------------------------------------------------------------- /upstream/os400/libxmlrpg/globals.rpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/os400/libxmlrpg/globals.rpgle -------------------------------------------------------------------------------- /upstream/os400/libxmlrpg/hash.rpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/os400/libxmlrpg/hash.rpgle -------------------------------------------------------------------------------- /upstream/os400/libxmlrpg/list.rpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/os400/libxmlrpg/list.rpgle -------------------------------------------------------------------------------- /upstream/os400/libxmlrpg/nanoftp.rpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/os400/libxmlrpg/nanoftp.rpgle -------------------------------------------------------------------------------- /upstream/os400/libxmlrpg/nanohttp.rpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/os400/libxmlrpg/nanohttp.rpgle -------------------------------------------------------------------------------- /upstream/os400/libxmlrpg/parser.rpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/os400/libxmlrpg/parser.rpgle -------------------------------------------------------------------------------- /upstream/os400/libxmlrpg/parserInternals.rpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/os400/libxmlrpg/parserInternals.rpgle -------------------------------------------------------------------------------- /upstream/os400/libxmlrpg/pattern.rpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/os400/libxmlrpg/pattern.rpgle -------------------------------------------------------------------------------- /upstream/os400/libxmlrpg/relaxng.rpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/os400/libxmlrpg/relaxng.rpgle -------------------------------------------------------------------------------- /upstream/os400/libxmlrpg/schemasInternals.rpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/os400/libxmlrpg/schemasInternals.rpgle -------------------------------------------------------------------------------- /upstream/os400/libxmlrpg/schematron.rpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/os400/libxmlrpg/schematron.rpgle -------------------------------------------------------------------------------- /upstream/os400/libxmlrpg/threads.rpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/os400/libxmlrpg/threads.rpgle -------------------------------------------------------------------------------- /upstream/os400/libxmlrpg/transcode.rpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/os400/libxmlrpg/transcode.rpgle -------------------------------------------------------------------------------- /upstream/os400/libxmlrpg/tree.rpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/os400/libxmlrpg/tree.rpgle -------------------------------------------------------------------------------- /upstream/os400/libxmlrpg/uri.rpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/os400/libxmlrpg/uri.rpgle -------------------------------------------------------------------------------- /upstream/os400/libxmlrpg/valid.rpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/os400/libxmlrpg/valid.rpgle -------------------------------------------------------------------------------- /upstream/os400/libxmlrpg/xinclude.rpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/os400/libxmlrpg/xinclude.rpgle -------------------------------------------------------------------------------- /upstream/os400/libxmlrpg/xlink.rpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/os400/libxmlrpg/xlink.rpgle -------------------------------------------------------------------------------- /upstream/os400/libxmlrpg/xmlIO.rpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/os400/libxmlrpg/xmlIO.rpgle -------------------------------------------------------------------------------- /upstream/os400/libxmlrpg/xmlTypesC.rpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/os400/libxmlrpg/xmlTypesC.rpgle -------------------------------------------------------------------------------- /upstream/os400/libxmlrpg/xmlautomata.rpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/os400/libxmlrpg/xmlautomata.rpgle -------------------------------------------------------------------------------- /upstream/os400/libxmlrpg/xmlerror.rpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/os400/libxmlrpg/xmlerror.rpgle -------------------------------------------------------------------------------- /upstream/os400/libxmlrpg/xmlexports.rpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/os400/libxmlrpg/xmlexports.rpgle -------------------------------------------------------------------------------- /upstream/os400/libxmlrpg/xmlmemory.rpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/os400/libxmlrpg/xmlmemory.rpgle -------------------------------------------------------------------------------- /upstream/os400/libxmlrpg/xmlmodule.rpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/os400/libxmlrpg/xmlmodule.rpgle -------------------------------------------------------------------------------- /upstream/os400/libxmlrpg/xmlreader.rpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/os400/libxmlrpg/xmlreader.rpgle -------------------------------------------------------------------------------- /upstream/os400/libxmlrpg/xmlregexp.rpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/os400/libxmlrpg/xmlregexp.rpgle -------------------------------------------------------------------------------- /upstream/os400/libxmlrpg/xmlsave.rpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/os400/libxmlrpg/xmlsave.rpgle -------------------------------------------------------------------------------- /upstream/os400/libxmlrpg/xmlschemas.rpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/os400/libxmlrpg/xmlschemas.rpgle -------------------------------------------------------------------------------- /upstream/os400/libxmlrpg/xmlschemastypes.rpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/os400/libxmlrpg/xmlschemastypes.rpgle -------------------------------------------------------------------------------- /upstream/os400/libxmlrpg/xmlstdarg.rpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/os400/libxmlrpg/xmlstdarg.rpgle -------------------------------------------------------------------------------- /upstream/os400/libxmlrpg/xmlstring.rpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/os400/libxmlrpg/xmlstring.rpgle -------------------------------------------------------------------------------- /upstream/os400/libxmlrpg/xmlunicode.rpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/os400/libxmlrpg/xmlunicode.rpgle -------------------------------------------------------------------------------- /upstream/os400/libxmlrpg/xmlversion.rpgle.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/os400/libxmlrpg/xmlversion.rpgle.in -------------------------------------------------------------------------------- /upstream/os400/libxmlrpg/xmlwriter.rpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/os400/libxmlrpg/xmlwriter.rpgle -------------------------------------------------------------------------------- /upstream/os400/libxmlrpg/xpath.rpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/os400/libxmlrpg/xpath.rpgle -------------------------------------------------------------------------------- /upstream/os400/libxmlrpg/xpathInternals.rpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/os400/libxmlrpg/xpathInternals.rpgle -------------------------------------------------------------------------------- /upstream/os400/libxmlrpg/xpointer.rpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/os400/libxmlrpg/xpointer.rpgle -------------------------------------------------------------------------------- /upstream/os400/make-bldcsndfa.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/os400/make-bldcsndfa.sh -------------------------------------------------------------------------------- /upstream/os400/make-include.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/os400/make-include.sh -------------------------------------------------------------------------------- /upstream/os400/make-rpg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/os400/make-rpg.sh -------------------------------------------------------------------------------- /upstream/os400/make-src.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/os400/make-src.sh -------------------------------------------------------------------------------- /upstream/os400/make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/os400/make.sh -------------------------------------------------------------------------------- /upstream/os400/os400config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/os400/os400config.h.in -------------------------------------------------------------------------------- /upstream/os400/rpgsupport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/os400/rpgsupport.c -------------------------------------------------------------------------------- /upstream/os400/rpgsupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/os400/rpgsupport.h -------------------------------------------------------------------------------- /upstream/os400/transcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/os400/transcode.c -------------------------------------------------------------------------------- /upstream/os400/transcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/os400/transcode.h -------------------------------------------------------------------------------- /upstream/os400/wrappers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/os400/wrappers.c -------------------------------------------------------------------------------- /upstream/os400/wrappers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/os400/wrappers.h -------------------------------------------------------------------------------- /upstream/os400/xmlcatalog.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/os400/xmlcatalog.cmd -------------------------------------------------------------------------------- /upstream/os400/xmlcatlgcl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/os400/xmlcatlgcl.c -------------------------------------------------------------------------------- /upstream/os400/xmllint.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/os400/xmllint.cmd -------------------------------------------------------------------------------- /upstream/os400/xmllintcl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/os400/xmllintcl.c -------------------------------------------------------------------------------- /upstream/parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/parser.c -------------------------------------------------------------------------------- /upstream/parserInternals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/parserInternals.c -------------------------------------------------------------------------------- /upstream/pattern.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/pattern.c -------------------------------------------------------------------------------- /upstream/python/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/python/.gitignore -------------------------------------------------------------------------------- /upstream/python/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/python/Makefile.am -------------------------------------------------------------------------------- /upstream/python/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/python/README -------------------------------------------------------------------------------- /upstream/python/drv_libxml2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/python/drv_libxml2.py -------------------------------------------------------------------------------- /upstream/python/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/python/generator.py -------------------------------------------------------------------------------- /upstream/python/libxml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/python/libxml.c -------------------------------------------------------------------------------- /upstream/python/libxml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/python/libxml.py -------------------------------------------------------------------------------- /upstream/python/libxml2-python-api.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/python/libxml2-python-api.xml -------------------------------------------------------------------------------- /upstream/python/libxml_wrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/python/libxml_wrap.h -------------------------------------------------------------------------------- /upstream/python/setup.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/python/setup.py.in -------------------------------------------------------------------------------- /upstream/python/tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/python/tests/Makefile.am -------------------------------------------------------------------------------- /upstream/python/tests/attribs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/python/tests/attribs.py -------------------------------------------------------------------------------- /upstream/python/tests/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/python/tests/build.py -------------------------------------------------------------------------------- /upstream/python/tests/compareNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/python/tests/compareNodes.py -------------------------------------------------------------------------------- /upstream/python/tests/ctxterror.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/python/tests/ctxterror.py -------------------------------------------------------------------------------- /upstream/python/tests/cutnpaste.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/python/tests/cutnpaste.py -------------------------------------------------------------------------------- /upstream/python/tests/dtdvalid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/python/tests/dtdvalid.py -------------------------------------------------------------------------------- /upstream/python/tests/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/python/tests/error.py -------------------------------------------------------------------------------- /upstream/python/tests/inbuf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/python/tests/inbuf.py -------------------------------------------------------------------------------- /upstream/python/tests/indexes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/python/tests/indexes.py -------------------------------------------------------------------------------- /upstream/python/tests/input_callback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/python/tests/input_callback.py -------------------------------------------------------------------------------- /upstream/python/tests/invalid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/python/tests/invalid.xml -------------------------------------------------------------------------------- /upstream/python/tests/nsdel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/python/tests/nsdel.py -------------------------------------------------------------------------------- /upstream/python/tests/outbuf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/python/tests/outbuf.py -------------------------------------------------------------------------------- /upstream/python/tests/push.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/python/tests/push.py -------------------------------------------------------------------------------- /upstream/python/tests/pushSAX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/python/tests/pushSAX.py -------------------------------------------------------------------------------- /upstream/python/tests/pushSAXhtml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/python/tests/pushSAXhtml.py -------------------------------------------------------------------------------- /upstream/python/tests/reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/python/tests/reader.py -------------------------------------------------------------------------------- /upstream/python/tests/reader2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/python/tests/reader2.py -------------------------------------------------------------------------------- /upstream/python/tests/reader3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/python/tests/reader3.py -------------------------------------------------------------------------------- /upstream/python/tests/reader4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/python/tests/reader4.py -------------------------------------------------------------------------------- /upstream/python/tests/reader5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/python/tests/reader5.py -------------------------------------------------------------------------------- /upstream/python/tests/reader6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/python/tests/reader6.py -------------------------------------------------------------------------------- /upstream/python/tests/reader7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/python/tests/reader7.py -------------------------------------------------------------------------------- /upstream/python/tests/reader8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/python/tests/reader8.py -------------------------------------------------------------------------------- /upstream/python/tests/readererr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/python/tests/readererr.py -------------------------------------------------------------------------------- /upstream/python/tests/readernext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/python/tests/readernext.py -------------------------------------------------------------------------------- /upstream/python/tests/regexp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/python/tests/regexp.py -------------------------------------------------------------------------------- /upstream/python/tests/relaxng.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/python/tests/relaxng.py -------------------------------------------------------------------------------- /upstream/python/tests/resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/python/tests/resolver.py -------------------------------------------------------------------------------- /upstream/python/tests/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/python/tests/schema.py -------------------------------------------------------------------------------- /upstream/python/tests/serialize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/python/tests/serialize.py -------------------------------------------------------------------------------- /upstream/python/tests/sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/python/tests/sync.py -------------------------------------------------------------------------------- /upstream/python/tests/test.dtd: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /upstream/python/tests/thread2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/python/tests/thread2.py -------------------------------------------------------------------------------- /upstream/python/tests/tst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/python/tests/tst.py -------------------------------------------------------------------------------- /upstream/python/tests/tst.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/python/tests/tst.xml -------------------------------------------------------------------------------- /upstream/python/tests/tstLastError.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/python/tests/tstLastError.py -------------------------------------------------------------------------------- /upstream/python/tests/tstURI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/python/tests/tstURI.py -------------------------------------------------------------------------------- /upstream/python/tests/tstmem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/python/tests/tstmem.py -------------------------------------------------------------------------------- /upstream/python/tests/tstxpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/python/tests/tstxpath.py -------------------------------------------------------------------------------- /upstream/python/tests/valid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/python/tests/valid.xml -------------------------------------------------------------------------------- /upstream/python/tests/validDTD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/python/tests/validDTD.py -------------------------------------------------------------------------------- /upstream/python/tests/validRNG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/python/tests/validRNG.py -------------------------------------------------------------------------------- /upstream/python/tests/validSchemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/python/tests/validSchemas.py -------------------------------------------------------------------------------- /upstream/python/tests/validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/python/tests/validate.py -------------------------------------------------------------------------------- /upstream/python/tests/walker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/python/tests/walker.py -------------------------------------------------------------------------------- /upstream/python/tests/xpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/python/tests/xpath.py -------------------------------------------------------------------------------- /upstream/python/tests/xpathext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/python/tests/xpathext.py -------------------------------------------------------------------------------- /upstream/python/tests/xpathleak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/python/tests/xpathleak.py -------------------------------------------------------------------------------- /upstream/python/tests/xpathns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/python/tests/xpathns.py -------------------------------------------------------------------------------- /upstream/python/tests/xpathret.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/python/tests/xpathret.py -------------------------------------------------------------------------------- /upstream/python/types.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/python/types.c -------------------------------------------------------------------------------- /upstream/relaxng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/relaxng.c -------------------------------------------------------------------------------- /upstream/rngparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/rngparser.c -------------------------------------------------------------------------------- /upstream/runsuite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/runsuite.c -------------------------------------------------------------------------------- /upstream/runtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/runtest.c -------------------------------------------------------------------------------- /upstream/runxmlconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/runxmlconf.c -------------------------------------------------------------------------------- /upstream/schematron.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/schematron.c -------------------------------------------------------------------------------- /upstream/testModule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/testModule.c -------------------------------------------------------------------------------- /upstream/testOOM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/testOOM.c -------------------------------------------------------------------------------- /upstream/testOOMlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/testOOMlib.c -------------------------------------------------------------------------------- /upstream/testOOMlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/testOOMlib.h -------------------------------------------------------------------------------- /upstream/testThreads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/testThreads.c -------------------------------------------------------------------------------- /upstream/testapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/testapi.c -------------------------------------------------------------------------------- /upstream/testchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/testchar.c -------------------------------------------------------------------------------- /upstream/testdict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/testdict.c -------------------------------------------------------------------------------- /upstream/testdso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/testdso.c -------------------------------------------------------------------------------- /upstream/testlimits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/testlimits.c -------------------------------------------------------------------------------- /upstream/testrecurse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/testrecurse.c -------------------------------------------------------------------------------- /upstream/threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/threads.c -------------------------------------------------------------------------------- /upstream/timsort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/timsort.h -------------------------------------------------------------------------------- /upstream/tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/tree.c -------------------------------------------------------------------------------- /upstream/trio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/trio.c -------------------------------------------------------------------------------- /upstream/trio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/trio.h -------------------------------------------------------------------------------- /upstream/triodef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/triodef.h -------------------------------------------------------------------------------- /upstream/trionan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/trionan.c -------------------------------------------------------------------------------- /upstream/trionan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/trionan.h -------------------------------------------------------------------------------- /upstream/triop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/triop.h -------------------------------------------------------------------------------- /upstream/triostr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/triostr.c -------------------------------------------------------------------------------- /upstream/triostr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/triostr.h -------------------------------------------------------------------------------- /upstream/uri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/uri.c -------------------------------------------------------------------------------- /upstream/valid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/valid.c -------------------------------------------------------------------------------- /upstream/vms/build_libxml.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/vms/build_libxml.com -------------------------------------------------------------------------------- /upstream/vms/config.vms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/vms/config.vms -------------------------------------------------------------------------------- /upstream/vms/diffs.vms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/vms/diffs.vms -------------------------------------------------------------------------------- /upstream/vms/readme.vms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/vms/readme.vms -------------------------------------------------------------------------------- /upstream/win32/Makefile.bcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/win32/Makefile.bcb -------------------------------------------------------------------------------- /upstream/win32/Makefile.mingw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/win32/Makefile.mingw -------------------------------------------------------------------------------- /upstream/win32/Makefile.msvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/win32/Makefile.msvc -------------------------------------------------------------------------------- /upstream/win32/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/win32/Readme.txt -------------------------------------------------------------------------------- /upstream/win32/configure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/win32/configure.js -------------------------------------------------------------------------------- /upstream/win32/libxml2.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/win32/libxml2.rc -------------------------------------------------------------------------------- /upstream/xinclude.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/xinclude.c -------------------------------------------------------------------------------- /upstream/xlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/xlink.c -------------------------------------------------------------------------------- /upstream/xml2-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/xml2-config.in -------------------------------------------------------------------------------- /upstream/xmlIO.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/xmlIO.c -------------------------------------------------------------------------------- /upstream/xmlcatalog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/xmlcatalog.c -------------------------------------------------------------------------------- /upstream/xmllint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/xmllint.c -------------------------------------------------------------------------------- /upstream/xmlmemory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/xmlmemory.c -------------------------------------------------------------------------------- /upstream/xmlmodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/xmlmodule.c -------------------------------------------------------------------------------- /upstream/xmlreader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/xmlreader.c -------------------------------------------------------------------------------- /upstream/xmlregexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/xmlregexp.c -------------------------------------------------------------------------------- /upstream/xmlsave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/xmlsave.c -------------------------------------------------------------------------------- /upstream/xmlschemas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/xmlschemas.c -------------------------------------------------------------------------------- /upstream/xmlschemastypes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/xmlschemastypes.c -------------------------------------------------------------------------------- /upstream/xmlstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/xmlstring.c -------------------------------------------------------------------------------- /upstream/xmlunicode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/xmlunicode.c -------------------------------------------------------------------------------- /upstream/xmlwriter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/xmlwriter.c -------------------------------------------------------------------------------- /upstream/xpath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/xpath.c -------------------------------------------------------------------------------- /upstream/xpointer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/xpointer.c -------------------------------------------------------------------------------- /upstream/xstc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/xstc/.gitignore -------------------------------------------------------------------------------- /upstream/xstc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/xstc/Makefile.am -------------------------------------------------------------------------------- /upstream/xstc/fixup-tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/xstc/fixup-tests.py -------------------------------------------------------------------------------- /upstream/xstc/xstc-to-python.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/xstc/xstc-to-python.xsl -------------------------------------------------------------------------------- /upstream/xstc/xstc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/xstc/xstc.py -------------------------------------------------------------------------------- /upstream/xzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/upstream/xzlib.c -------------------------------------------------------------------------------- /verify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-build-libxml2/HEAD/verify.sh --------------------------------------------------------------------------------