├── .gitignore ├── .travis.yml ├── COPYING ├── NEWS ├── README.md ├── manual ├── .gitignore ├── Makefile ├── graphics │ ├── Makefile │ ├── fontdir.fig │ └── fontdir.pdf ├── luatex-backend.tex ├── luatex-callbacks.tex ├── luatex-contents.tex ├── luatex-enhancements.tex ├── luatex-export-titlepage.tex ├── luatex-firstpage.tex ├── luatex-fontloader.tex ├── luatex-fonts.tex ├── luatex-graphics.tex ├── luatex-introduction.tex ├── luatex-languages.tex ├── luatex-logos.tex ├── luatex-lua.tex ├── luatex-math.tex ├── luatex-modifications.tex ├── luatex-nodes.tex ├── luatex-preamble.tex ├── luatex-registers.tex ├── luatex-statistics.tex ├── luatex-style.tex ├── luatex-tex.tex ├── luatex-titlepage.tex ├── luatex.pdf ├── luatex.tex ├── old │ ├── Makefile │ ├── fdata.lua │ ├── fdata_epdf.lua │ ├── fdata_img.lua │ ├── functionref.pdf │ ├── functionref.tex │ ├── luatexref-env.tex │ ├── luatexref-t.pdf │ └── luatexref-t.tex └── temp │ └── luatex-pdf.tex └── source ├── Build ├── ChangeLog ├── Makefile.am ├── Makefile.in ├── README ├── README.0overview ├── README.1prerequisites ├── README.2building ├── README.3installing ├── README.4layout ├── README.5configure ├── README.6coding ├── README.7continuous ├── aclocal.m4 ├── am ├── ChangeLog ├── README ├── bin_links.am ├── dist_hook.am ├── hdr_links.am ├── man.am ├── man1_links.am ├── rebuild.am ├── reconfig.am ├── recurse.am └── script_links.am ├── auxdir └── auxsub │ ├── Makefile.am │ ├── Makefile.in │ ├── README │ ├── aclocal.m4 │ ├── configure │ └── configure.ac ├── build-aux ├── README.TL ├── ar-lib ├── compile ├── config.guess ├── config.sub ├── depcomp ├── install-sh ├── ltmain.sh ├── missing ├── relpath ├── test-driver ├── texinfo.tex └── ylwrap ├── configure ├── configure.ac ├── doc ├── ChangeLog ├── Makefile.am ├── Makefile.in ├── README.solaris ├── build-tools.txt ├── splitinfo.gawk ├── tlbuild-incl │ ├── install-tl.texi │ └── tlmgr.texi ├── tlbuild.info └── tlbuild.texi ├── libs ├── ChangeLog ├── Makefile.am ├── Makefile.in ├── README ├── aclocal.m4 ├── configure ├── configure.ac ├── graphite2 │ ├── ChangeLog │ ├── Makefile.am │ ├── Makefile.in │ ├── TLpatches │ │ ├── ChangeLog │ │ └── TL-Changes │ ├── ac │ │ ├── graphite2.ac │ │ └── withenable.ac │ ├── aclocal.m4 │ ├── config.h.in │ ├── configure │ ├── configure.ac │ ├── gr2test.c │ ├── graphite2-src │ │ ├── CMakeLists.txt │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── Graphite.cmake │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Todo.txt │ │ ├── graphite2.pc.in │ │ ├── include │ │ │ └── graphite2 │ │ │ │ ├── Font.h │ │ │ │ ├── Log.h │ │ │ │ ├── Segment.h │ │ │ │ └── Types.h │ │ └── src │ │ │ ├── CMakeLists.txt │ │ │ ├── CmapCache.cpp │ │ │ ├── Code.cpp │ │ │ ├── Collider.cpp │ │ │ ├── Decompressor.cpp │ │ │ ├── Face.cpp │ │ │ ├── FeatureMap.cpp │ │ │ ├── FileFace.cpp │ │ │ ├── Font.cpp │ │ │ ├── GlyphCache.cpp │ │ │ ├── GlyphFace.cpp │ │ │ ├── Intervals.cpp │ │ │ ├── Justifier.cpp │ │ │ ├── NameTable.cpp │ │ │ ├── Pass.cpp │ │ │ ├── Position.cpp │ │ │ ├── Segment.cpp │ │ │ ├── Silf.cpp │ │ │ ├── Slot.cpp │ │ │ ├── Sparse.cpp │ │ │ ├── TtfUtil.cpp │ │ │ ├── UtfCodec.cpp │ │ │ ├── call_machine.cpp │ │ │ ├── direct_machine.cpp │ │ │ ├── files.mk │ │ │ ├── gr_char_info.cpp │ │ │ ├── gr_face.cpp │ │ │ ├── gr_features.cpp │ │ │ ├── gr_font.cpp │ │ │ ├── gr_logging.cpp │ │ │ ├── gr_segment.cpp │ │ │ ├── gr_slot.cpp │ │ │ ├── inc │ │ │ ├── CharInfo.h │ │ │ ├── CmapCache.h │ │ │ ├── Code.h │ │ │ ├── Collider.h │ │ │ ├── Compression.h │ │ │ ├── Decompressor.h │ │ │ ├── Endian.h │ │ │ ├── Error.h │ │ │ ├── Face.h │ │ │ ├── FeatureMap.h │ │ │ ├── FeatureVal.h │ │ │ ├── FileFace.h │ │ │ ├── Font.h │ │ │ ├── GlyphCache.h │ │ │ ├── GlyphFace.h │ │ │ ├── Intervals.h │ │ │ ├── List.h │ │ │ ├── Machine.h │ │ │ ├── Main.h │ │ │ ├── NameTable.h │ │ │ ├── Pass.h │ │ │ ├── Position.h │ │ │ ├── Rule.h │ │ │ ├── Segment.h │ │ │ ├── Silf.h │ │ │ ├── Slot.h │ │ │ ├── Sparse.h │ │ │ ├── TtfTypes.h │ │ │ ├── TtfUtil.h │ │ │ ├── UtfCodec.h │ │ │ ├── bits.h │ │ │ ├── debug.h │ │ │ ├── json.h │ │ │ ├── locale2lcid.h │ │ │ ├── opcode_table.h │ │ │ └── opcodes.h │ │ │ └── json.cpp │ ├── graphite2.test │ ├── include │ │ └── graphite2 │ │ │ ├── Makefile.am │ │ │ └── Makefile.in │ └── version.ac ├── harfbuzz │ ├── ChangeLog │ ├── Makefile.am │ ├── Makefile.in │ ├── TLpatches │ │ ├── ChangeLog │ │ └── TL-Changes │ ├── ac │ │ ├── harfbuzz.ac │ │ └── withenable.ac │ ├── aclocal.m4 │ ├── config.h.in │ ├── configure │ ├── configure.ac │ ├── harfbuzz-src │ │ ├── AUTHORS │ │ ├── BUILD.md │ │ ├── CMakeLists.txt │ │ ├── CONFIG.md │ │ ├── ChangeLog │ │ ├── Makefile.am │ │ ├── NEWS │ │ ├── README │ │ ├── README.md │ │ ├── README.mingw.md │ │ ├── README.python.md │ │ ├── RELEASING.md │ │ ├── TESTING.md │ │ ├── THANKS │ │ ├── TODO │ │ ├── autogen.sh │ │ ├── config.h.in │ │ ├── configure.ac │ │ ├── gtk-doc.make │ │ ├── harfbuzz.doap │ │ ├── mingw-configure.sh │ │ ├── mingw-ldd.py │ │ ├── mingw32.sh │ │ ├── mingw64.sh │ │ ├── replace-enum-strings.cmake │ │ └── src │ │ │ ├── Makefile.am │ │ │ ├── Makefile.sources │ │ │ ├── check-c-linkage-decls.sh │ │ │ ├── check-externs.sh │ │ │ ├── check-header-guards.sh │ │ │ ├── check-includes.sh │ │ │ ├── check-libstdc++.sh │ │ │ ├── check-static-inits.sh │ │ │ ├── check-symbols.sh │ │ │ ├── dump-indic-data.cc │ │ │ ├── dump-khmer-data.cc │ │ │ ├── dump-myanmar-data.cc │ │ │ ├── dump-use-data.cc │ │ │ ├── gen-arabic-table.py │ │ │ ├── gen-def.py │ │ │ ├── gen-emoji-table.py │ │ │ ├── gen-indic-table.py │ │ │ ├── gen-os2-unicode-ranges.py │ │ │ ├── gen-tag-table.py │ │ │ ├── gen-ucd-table.py │ │ │ ├── gen-use-table.py │ │ │ ├── gen-vowel-constraints.py │ │ │ ├── harfbuzz-config.cmake.in │ │ │ ├── harfbuzz-gobject.pc.in │ │ │ ├── harfbuzz-icu.pc.in │ │ │ ├── harfbuzz-subset.pc.in │ │ │ ├── harfbuzz.cc │ │ │ ├── harfbuzz.pc.in │ │ │ ├── hb-aat-fdsc-table.hh │ │ │ ├── hb-aat-layout-ankr-table.hh │ │ │ ├── hb-aat-layout-bsln-table.hh │ │ │ ├── hb-aat-layout-common.hh │ │ │ ├── hb-aat-layout-feat-table.hh │ │ │ ├── hb-aat-layout-just-table.hh │ │ │ ├── hb-aat-layout-kerx-table.hh │ │ │ ├── hb-aat-layout-lcar-table.hh │ │ │ ├── hb-aat-layout-morx-table.hh │ │ │ ├── hb-aat-layout-opbd-table.hh │ │ │ ├── hb-aat-layout-trak-table.hh │ │ │ ├── hb-aat-layout.cc │ │ │ ├── hb-aat-layout.h │ │ │ ├── hb-aat-layout.hh │ │ │ ├── hb-aat-ltag-table.hh │ │ │ ├── hb-aat-map.cc │ │ │ ├── hb-aat-map.hh │ │ │ ├── hb-aat.h │ │ │ ├── hb-algs.hh │ │ │ ├── hb-array.hh │ │ │ ├── hb-atomic.hh │ │ │ ├── hb-bimap.hh │ │ │ ├── hb-blob.cc │ │ │ ├── hb-blob.h │ │ │ ├── hb-blob.hh │ │ │ ├── hb-buffer-deserialize-json.hh │ │ │ ├── hb-buffer-deserialize-json.rl │ │ │ ├── hb-buffer-deserialize-text.hh │ │ │ ├── hb-buffer-deserialize-text.rl │ │ │ ├── hb-buffer-serialize.cc │ │ │ ├── hb-buffer.cc │ │ │ ├── hb-buffer.h │ │ │ ├── hb-buffer.hh │ │ │ ├── hb-cache.hh │ │ │ ├── hb-cff-interp-common.hh │ │ │ ├── hb-cff-interp-cs-common.hh │ │ │ ├── hb-cff-interp-dict-common.hh │ │ │ ├── hb-cff1-interp-cs.hh │ │ │ ├── hb-cff2-interp-cs.hh │ │ │ ├── hb-common.cc │ │ │ ├── hb-common.h │ │ │ ├── hb-config.hh │ │ │ ├── hb-coretext.cc │ │ │ ├── hb-coretext.h │ │ │ ├── hb-debug.hh │ │ │ ├── hb-deprecated.h │ │ │ ├── hb-directwrite.cc │ │ │ ├── hb-directwrite.h │ │ │ ├── hb-dispatch.hh │ │ │ ├── hb-face.cc │ │ │ ├── hb-face.h │ │ │ ├── hb-face.hh │ │ │ ├── hb-fallback-shape.cc │ │ │ ├── hb-font.cc │ │ │ ├── hb-font.h │ │ │ ├── hb-font.hh │ │ │ ├── hb-ft.cc │ │ │ ├── hb-ft.h │ │ │ ├── hb-gdi.cc │ │ │ ├── hb-gdi.h │ │ │ ├── hb-glib.cc │ │ │ ├── hb-glib.h │ │ │ ├── hb-gobject-enums.cc.tmpl │ │ │ ├── hb-gobject-enums.h.tmpl │ │ │ ├── hb-gobject-structs.cc │ │ │ ├── hb-gobject-structs.h │ │ │ ├── hb-gobject.h │ │ │ ├── hb-graphite2.cc │ │ │ ├── hb-graphite2.h │ │ │ ├── hb-icu.cc │ │ │ ├── hb-icu.h │ │ │ ├── hb-iter.hh │ │ │ ├── hb-kern.hh │ │ │ ├── hb-machinery.hh │ │ │ ├── hb-map.cc │ │ │ ├── hb-map.h │ │ │ ├── hb-map.hh │ │ │ ├── hb-meta.hh │ │ │ ├── hb-mutex.hh │ │ │ ├── hb-null.hh │ │ │ ├── hb-object.hh │ │ │ ├── hb-open-file.hh │ │ │ ├── hb-open-type.hh │ │ │ ├── hb-ot-cff-common.hh │ │ │ ├── hb-ot-cff1-table.cc │ │ │ ├── hb-ot-cff1-table.hh │ │ │ ├── hb-ot-cff2-table.cc │ │ │ ├── hb-ot-cff2-table.hh │ │ │ ├── hb-ot-cmap-table.hh │ │ │ ├── hb-ot-color-cbdt-table.hh │ │ │ ├── hb-ot-color-colr-table.hh │ │ │ ├── hb-ot-color-cpal-table.hh │ │ │ ├── hb-ot-color-sbix-table.hh │ │ │ ├── hb-ot-color-svg-table.hh │ │ │ ├── hb-ot-color.cc │ │ │ ├── hb-ot-color.h │ │ │ ├── hb-ot-deprecated.h │ │ │ ├── hb-ot-face-table-list.hh │ │ │ ├── hb-ot-face.cc │ │ │ ├── hb-ot-face.hh │ │ │ ├── hb-ot-font.cc │ │ │ ├── hb-ot-font.h │ │ │ ├── hb-ot-gasp-table.hh │ │ │ ├── hb-ot-glyf-table.hh │ │ │ ├── hb-ot-hdmx-table.hh │ │ │ ├── hb-ot-head-table.hh │ │ │ ├── hb-ot-hhea-table.hh │ │ │ ├── hb-ot-hmtx-table.hh │ │ │ ├── hb-ot-kern-table.hh │ │ │ ├── hb-ot-layout-base-table.hh │ │ │ ├── hb-ot-layout-common.hh │ │ │ ├── hb-ot-layout-gdef-table.hh │ │ │ ├── hb-ot-layout-gpos-table.hh │ │ │ ├── hb-ot-layout-gsub-table.hh │ │ │ ├── hb-ot-layout-gsubgpos.hh │ │ │ ├── hb-ot-layout-jstf-table.hh │ │ │ ├── hb-ot-layout.cc │ │ │ ├── hb-ot-layout.h │ │ │ ├── hb-ot-layout.hh │ │ │ ├── hb-ot-map.cc │ │ │ ├── hb-ot-map.hh │ │ │ ├── hb-ot-math-table.hh │ │ │ ├── hb-ot-math.cc │ │ │ ├── hb-ot-math.h │ │ │ ├── hb-ot-maxp-table.hh │ │ │ ├── hb-ot-meta-table.hh │ │ │ ├── hb-ot-meta.cc │ │ │ ├── hb-ot-meta.h │ │ │ ├── hb-ot-metrics.cc │ │ │ ├── hb-ot-metrics.h │ │ │ ├── hb-ot-metrics.hh │ │ │ ├── hb-ot-name-language-static.hh │ │ │ ├── hb-ot-name-language.hh │ │ │ ├── hb-ot-name-table.hh │ │ │ ├── hb-ot-name.cc │ │ │ ├── hb-ot-name.h │ │ │ ├── hb-ot-os2-table.hh │ │ │ ├── hb-ot-os2-unicode-ranges.hh │ │ │ ├── hb-ot-post-macroman.hh │ │ │ ├── hb-ot-post-table.hh │ │ │ ├── hb-ot-shape-complex-arabic-fallback.hh │ │ │ ├── hb-ot-shape-complex-arabic-table.hh │ │ │ ├── hb-ot-shape-complex-arabic-win1256.hh │ │ │ ├── hb-ot-shape-complex-arabic.cc │ │ │ ├── hb-ot-shape-complex-arabic.hh │ │ │ ├── hb-ot-shape-complex-default.cc │ │ │ ├── hb-ot-shape-complex-hangul.cc │ │ │ ├── hb-ot-shape-complex-hebrew.cc │ │ │ ├── hb-ot-shape-complex-indic-machine.hh │ │ │ ├── hb-ot-shape-complex-indic-machine.rl │ │ │ ├── hb-ot-shape-complex-indic-table.cc │ │ │ ├── hb-ot-shape-complex-indic.cc │ │ │ ├── hb-ot-shape-complex-indic.hh │ │ │ ├── hb-ot-shape-complex-khmer-machine.hh │ │ │ ├── hb-ot-shape-complex-khmer-machine.rl │ │ │ ├── hb-ot-shape-complex-khmer.cc │ │ │ ├── hb-ot-shape-complex-khmer.hh │ │ │ ├── hb-ot-shape-complex-myanmar-machine.hh │ │ │ ├── hb-ot-shape-complex-myanmar-machine.rl │ │ │ ├── hb-ot-shape-complex-myanmar.cc │ │ │ ├── hb-ot-shape-complex-myanmar.hh │ │ │ ├── hb-ot-shape-complex-thai.cc │ │ │ ├── hb-ot-shape-complex-use-machine.hh │ │ │ ├── hb-ot-shape-complex-use-machine.rl │ │ │ ├── hb-ot-shape-complex-use-table.cc │ │ │ ├── hb-ot-shape-complex-use.cc │ │ │ ├── hb-ot-shape-complex-use.hh │ │ │ ├── hb-ot-shape-complex-vowel-constraints.cc │ │ │ ├── hb-ot-shape-complex-vowel-constraints.hh │ │ │ ├── hb-ot-shape-complex.hh │ │ │ ├── hb-ot-shape-fallback.cc │ │ │ ├── hb-ot-shape-fallback.hh │ │ │ ├── hb-ot-shape-normalize.cc │ │ │ ├── hb-ot-shape-normalize.hh │ │ │ ├── hb-ot-shape.cc │ │ │ ├── hb-ot-shape.h │ │ │ ├── hb-ot-shape.hh │ │ │ ├── hb-ot-stat-table.hh │ │ │ ├── hb-ot-tag-table.hh │ │ │ ├── hb-ot-tag.cc │ │ │ ├── hb-ot-var-avar-table.hh │ │ │ ├── hb-ot-var-fvar-table.hh │ │ │ ├── hb-ot-var-hvar-table.hh │ │ │ ├── hb-ot-var-mvar-table.hh │ │ │ ├── hb-ot-var.cc │ │ │ ├── hb-ot-var.h │ │ │ ├── hb-ot-vorg-table.hh │ │ │ ├── hb-ot.h │ │ │ ├── hb-pool.hh │ │ │ ├── hb-sanitize.hh │ │ │ ├── hb-serialize.hh │ │ │ ├── hb-set-digest.hh │ │ │ ├── hb-set.cc │ │ │ ├── hb-set.h │ │ │ ├── hb-set.hh │ │ │ ├── hb-shape-plan.cc │ │ │ ├── hb-shape-plan.h │ │ │ ├── hb-shape-plan.hh │ │ │ ├── hb-shape.cc │ │ │ ├── hb-shape.h │ │ │ ├── hb-shaper-impl.hh │ │ │ ├── hb-shaper-list.hh │ │ │ ├── hb-shaper.cc │ │ │ ├── hb-shaper.hh │ │ │ ├── hb-static.cc │ │ │ ├── hb-string-array.hh │ │ │ ├── hb-subset-cff-common.cc │ │ │ ├── hb-subset-cff-common.hh │ │ │ ├── hb-subset-cff1.cc │ │ │ ├── hb-subset-cff1.hh │ │ │ ├── hb-subset-cff2.cc │ │ │ ├── hb-subset-cff2.hh │ │ │ ├── hb-subset-input.cc │ │ │ ├── hb-subset-input.hh │ │ │ ├── hb-subset-plan.cc │ │ │ ├── hb-subset-plan.hh │ │ │ ├── hb-subset.cc │ │ │ ├── hb-subset.h │ │ │ ├── hb-subset.hh │ │ │ ├── hb-ucd-table.hh │ │ │ ├── hb-ucd.cc │ │ │ ├── hb-unicode-emoji-table.hh │ │ │ ├── hb-unicode.cc │ │ │ ├── hb-unicode.h │ │ │ ├── hb-unicode.hh │ │ │ ├── hb-uniscribe.cc │ │ │ ├── hb-uniscribe.h │ │ │ ├── hb-utf.hh │ │ │ ├── hb-vector.hh │ │ │ ├── hb-version.h.in │ │ │ ├── hb-warning.cc │ │ │ ├── hb.h │ │ │ ├── hb.hh │ │ │ ├── main.cc │ │ │ ├── test-algs.cc │ │ │ ├── test-bimap.cc │ │ │ ├── test-buffer-serialize.cc │ │ │ ├── test-gpos-size-params.cc │ │ │ ├── test-gsub-would-substitute.cc │ │ │ ├── test-iter.cc │ │ │ ├── test-meta.cc │ │ │ ├── test-ot-color.cc │ │ │ ├── test-ot-meta.cc │ │ │ ├── test-ot-name.cc │ │ │ ├── test-unicode-ranges.cc │ │ │ └── test.cc │ ├── harfbuzz.test │ ├── hbtest.c │ ├── include │ │ ├── Makefile.am │ │ └── Makefile.in │ └── version.ac ├── libpng │ ├── ChangeLog │ ├── Makefile.am │ ├── Makefile.in │ ├── README │ ├── TLpatches │ │ ├── ChangeLog │ │ └── TL-Changes │ ├── ac │ │ ├── libpng.ac │ │ └── withenable.ac │ ├── aclocal.m4 │ ├── config.h.in │ ├── configure │ ├── configure.ac │ ├── include │ │ ├── Makefile.am │ │ └── Makefile.in │ ├── libpng-src │ │ ├── ANNOUNCE │ │ ├── AUTHORS │ │ ├── CHANGES │ │ ├── CMakeLists.txt │ │ ├── INSTALL │ │ ├── LICENSE │ │ ├── Makefile.am │ │ ├── README │ │ ├── TODO │ │ ├── TRADEMARK │ │ ├── arm │ │ │ ├── arm_init.c │ │ │ ├── filter_neon.S │ │ │ ├── filter_neon_intrinsics.c │ │ │ └── palette_neon_intrinsics.c │ │ ├── autogen.sh │ │ ├── config.h.in │ │ ├── configure.ac │ │ ├── contrib │ │ │ ├── README.txt │ │ │ ├── arm-neon │ │ │ │ ├── README │ │ │ │ ├── android-ndk.c │ │ │ │ ├── linux-auxv.c │ │ │ │ └── linux.c │ │ │ ├── conftest │ │ │ │ ├── README │ │ │ │ ├── pngcp.dfa │ │ │ │ ├── read.dfa │ │ │ │ ├── s_read.dfa │ │ │ │ ├── s_write.dfa │ │ │ │ ├── simple.dfa │ │ │ │ └── write.dfa │ │ │ ├── examples │ │ │ │ ├── README.txt │ │ │ │ ├── iccfrompng.c │ │ │ │ ├── pngpixel.c │ │ │ │ ├── pngtopng.c │ │ │ │ └── simpleover.c │ │ │ ├── gregbook │ │ │ │ ├── COPYING │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile.mingw32 │ │ │ │ ├── Makefile.sgi │ │ │ │ ├── Makefile.unx │ │ │ │ ├── Makefile.w32 │ │ │ │ ├── README │ │ │ │ ├── makevms.com │ │ │ │ ├── readpng.c │ │ │ │ ├── readpng.h │ │ │ │ ├── readpng2.c │ │ │ │ ├── readpng2.h │ │ │ │ ├── readppm.c │ │ │ │ ├── rpng-win.c │ │ │ │ ├── rpng-x.c │ │ │ │ ├── rpng2-win.c │ │ │ │ ├── rpng2-x.c │ │ │ │ ├── toucan.png │ │ │ │ ├── wpng.c │ │ │ │ ├── writepng.c │ │ │ │ └── writepng.h │ │ │ ├── libtests │ │ │ │ ├── fakepng.c │ │ │ │ ├── gentests.sh │ │ │ │ ├── makepng.c │ │ │ │ ├── pngimage.c │ │ │ │ ├── pngstest-errors.h │ │ │ │ ├── pngstest.c │ │ │ │ ├── pngunknown.c │ │ │ │ ├── pngvalid.c │ │ │ │ ├── readpng.c │ │ │ │ ├── tarith.c │ │ │ │ └── timepng.c │ │ │ ├── mips-msa │ │ │ │ ├── README │ │ │ │ └── linux.c │ │ │ ├── oss-fuzz │ │ │ │ ├── Dockerfile │ │ │ │ ├── README.txt │ │ │ │ ├── build.sh │ │ │ │ ├── libpng_read_fuzzer.cc │ │ │ │ ├── libpng_read_fuzzer.options │ │ │ │ └── png.dict │ │ │ ├── pngminim │ │ │ │ ├── README │ │ │ │ ├── decoder │ │ │ │ │ ├── README │ │ │ │ │ ├── makefile │ │ │ │ │ ├── pngusr.dfa │ │ │ │ │ └── pngusr.h │ │ │ │ ├── encoder │ │ │ │ │ ├── README │ │ │ │ │ ├── makefile │ │ │ │ │ ├── pngusr.dfa │ │ │ │ │ └── pngusr.h │ │ │ │ └── preader │ │ │ │ │ ├── README │ │ │ │ │ ├── makefile │ │ │ │ │ ├── pngusr.dfa │ │ │ │ │ └── pngusr.h │ │ │ ├── pngminus │ │ │ │ ├── README │ │ │ │ ├── makefile.std │ │ │ │ ├── makefile.tc3 │ │ │ │ ├── makevms.com │ │ │ │ ├── png2pnm.bat │ │ │ │ ├── png2pnm.c │ │ │ │ ├── png2pnm.sh │ │ │ │ ├── pngminus.bat │ │ │ │ ├── pngminus.sh │ │ │ │ ├── pnm2png.bat │ │ │ │ ├── pnm2png.c │ │ │ │ └── pnm2png.sh │ │ │ ├── pngsuite │ │ │ │ ├── README │ │ │ │ ├── bad_interlace_conversions.txt │ │ │ │ ├── basn0g01.png │ │ │ │ ├── basn0g02.png │ │ │ │ ├── basn0g04.png │ │ │ │ ├── basn0g08.png │ │ │ │ ├── basn0g16.png │ │ │ │ ├── basn2c08.png │ │ │ │ ├── basn2c16.png │ │ │ │ ├── basn3p01.png │ │ │ │ ├── basn3p02.png │ │ │ │ ├── basn3p04.png │ │ │ │ ├── basn3p08.png │ │ │ │ ├── basn4a08.png │ │ │ │ ├── basn4a16.png │ │ │ │ ├── basn6a08.png │ │ │ │ ├── basn6a16.png │ │ │ │ ├── ftbbn0g01.png │ │ │ │ ├── ftbbn0g02.png │ │ │ │ ├── ftbbn0g04.png │ │ │ │ ├── ftbbn2c16.png │ │ │ │ ├── ftbbn3p08.png │ │ │ │ ├── ftbgn2c16.png │ │ │ │ ├── ftbgn3p08.png │ │ │ │ ├── ftbrn2c08.png │ │ │ │ ├── ftbwn0g16.png │ │ │ │ ├── ftbwn3p08.png │ │ │ │ ├── ftbyn3p08.png │ │ │ │ ├── ftp0n0g08.png │ │ │ │ ├── ftp0n2c08.png │ │ │ │ ├── ftp0n3p08.png │ │ │ │ ├── ftp1n3p08.png │ │ │ │ ├── ibasn0g08.png │ │ │ │ ├── ibasn0g16.png │ │ │ │ ├── ibasn2c08.png │ │ │ │ ├── ibasn2c16.png │ │ │ │ ├── ibasn3p08.png │ │ │ │ ├── ibasn4a08.png │ │ │ │ ├── ibasn4a16.png │ │ │ │ ├── ibasn6a08.png │ │ │ │ ├── ibasn6a16.png │ │ │ │ ├── iftbbn2c16.png │ │ │ │ ├── iftbbn3p08.png │ │ │ │ ├── iftbgn2c16.png │ │ │ │ ├── iftbgn3p08.png │ │ │ │ ├── iftbrn2c08.png │ │ │ │ ├── iftbwn0g16.png │ │ │ │ ├── iftbwn3p08.png │ │ │ │ ├── iftbyn3p08.png │ │ │ │ ├── iftp0n0g08.png │ │ │ │ ├── iftp0n2c08.png │ │ │ │ ├── iftp0n3p08.png │ │ │ │ ├── iftp1n3p08.png │ │ │ │ └── interlaced │ │ │ │ │ ├── README │ │ │ │ │ ├── ibasn0g01.png │ │ │ │ │ ├── ibasn0g02.png │ │ │ │ │ ├── ibasn0g04.png │ │ │ │ │ ├── ibasn3p01.png │ │ │ │ │ ├── ibasn3p02.png │ │ │ │ │ ├── ibasn3p04.png │ │ │ │ │ ├── iftbbn0g01.png │ │ │ │ │ ├── iftbbn0g02.png │ │ │ │ │ └── iftbbn0g04.png │ │ │ ├── powerpc-vsx │ │ │ │ ├── README │ │ │ │ ├── linux.c │ │ │ │ └── linux_aux.c │ │ │ ├── testpngs │ │ │ │ ├── crashers │ │ │ │ │ ├── bad_iCCP.png │ │ │ │ │ ├── badadler.png │ │ │ │ │ ├── badcrc.png │ │ │ │ │ ├── empty_ancillary_chunks.png │ │ │ │ │ ├── huge_IDAT.png │ │ │ │ │ ├── huge_bKGD_chunk.png │ │ │ │ │ ├── huge_cHRM_chunk.png │ │ │ │ │ ├── huge_eXIf_chunk.png │ │ │ │ │ ├── huge_gAMA_chunk.png │ │ │ │ │ ├── huge_hIST_chunk.png │ │ │ │ │ ├── huge_iCCP_chunk.png │ │ │ │ │ ├── huge_iTXt_chunk.png │ │ │ │ │ ├── huge_juNK_unsafe_to_copy.png │ │ │ │ │ ├── huge_juNk_safe_to_copy.png │ │ │ │ │ ├── huge_pCAL_chunk.png │ │ │ │ │ ├── huge_pHYs_chunk.png │ │ │ │ │ ├── huge_sCAL_chunk.png │ │ │ │ │ ├── huge_sPLT_chunk.png │ │ │ │ │ ├── huge_sRGB_chunk.png │ │ │ │ │ ├── huge_sTER_chunk.png │ │ │ │ │ ├── huge_tEXt_chunk.png │ │ │ │ │ ├── huge_tIME_chunk.png │ │ │ │ │ └── huge_zTXt_chunk.png │ │ │ │ ├── gray-1-1.8-tRNS.png │ │ │ │ ├── gray-1-1.8.png │ │ │ │ ├── gray-1-linear-tRNS.png │ │ │ │ ├── gray-1-linear.png │ │ │ │ ├── gray-1-sRGB-tRNS.png │ │ │ │ ├── gray-1-sRGB.png │ │ │ │ ├── gray-1-tRNS.png │ │ │ │ ├── gray-1.png │ │ │ │ ├── gray-16-1.8-tRNS.png │ │ │ │ ├── gray-16-1.8.png │ │ │ │ ├── gray-16-linear-tRNS.png │ │ │ │ ├── gray-16-linear.png │ │ │ │ ├── gray-16-sRGB-tRNS.png │ │ │ │ ├── gray-16-sRGB.png │ │ │ │ ├── gray-16-tRNS.png │ │ │ │ ├── gray-16.png │ │ │ │ ├── gray-2-1.8-tRNS.png │ │ │ │ ├── gray-2-1.8.png │ │ │ │ ├── gray-2-linear-tRNS.png │ │ │ │ ├── gray-2-linear.png │ │ │ │ ├── gray-2-sRGB-tRNS.png │ │ │ │ ├── gray-2-sRGB.png │ │ │ │ ├── gray-2-tRNS.png │ │ │ │ ├── gray-2.png │ │ │ │ ├── gray-4-1.8-tRNS.png │ │ │ │ ├── gray-4-1.8.png │ │ │ │ ├── gray-4-linear-tRNS.png │ │ │ │ ├── gray-4-linear.png │ │ │ │ ├── gray-4-sRGB-tRNS.png │ │ │ │ ├── gray-4-sRGB.png │ │ │ │ ├── gray-4-tRNS.png │ │ │ │ ├── gray-4.png │ │ │ │ ├── gray-8-1.8-tRNS.png │ │ │ │ ├── gray-8-1.8.png │ │ │ │ ├── gray-8-linear-tRNS.png │ │ │ │ ├── gray-8-linear.png │ │ │ │ ├── gray-8-sRGB-tRNS.png │ │ │ │ ├── gray-8-sRGB.png │ │ │ │ ├── gray-8-tRNS.png │ │ │ │ ├── gray-8.png │ │ │ │ ├── gray-alpha-16-1.8.png │ │ │ │ ├── gray-alpha-16-linear.png │ │ │ │ ├── gray-alpha-16-sRGB.png │ │ │ │ ├── gray-alpha-16.png │ │ │ │ ├── gray-alpha-8-1.8.png │ │ │ │ ├── gray-alpha-8-linear.png │ │ │ │ ├── gray-alpha-8-sRGB.png │ │ │ │ ├── gray-alpha-8.png │ │ │ │ ├── makepngs.sh │ │ │ │ ├── palette-1-1.8-tRNS.png │ │ │ │ ├── palette-1-1.8.png │ │ │ │ ├── palette-1-linear-tRNS.png │ │ │ │ ├── palette-1-linear.png │ │ │ │ ├── palette-1-sRGB-tRNS.png │ │ │ │ ├── palette-1-sRGB.png │ │ │ │ ├── palette-1-tRNS.png │ │ │ │ ├── palette-1.png │ │ │ │ ├── palette-2-1.8-tRNS.png │ │ │ │ ├── palette-2-1.8.png │ │ │ │ ├── palette-2-linear-tRNS.png │ │ │ │ ├── palette-2-linear.png │ │ │ │ ├── palette-2-sRGB-tRNS.png │ │ │ │ ├── palette-2-sRGB.png │ │ │ │ ├── palette-2-tRNS.png │ │ │ │ ├── palette-2.png │ │ │ │ ├── palette-4-1.8-tRNS.png │ │ │ │ ├── palette-4-1.8.png │ │ │ │ ├── palette-4-linear-tRNS.png │ │ │ │ ├── palette-4-linear.png │ │ │ │ ├── palette-4-sRGB-tRNS.png │ │ │ │ ├── palette-4-sRGB.png │ │ │ │ ├── palette-4-tRNS.png │ │ │ │ ├── palette-4.png │ │ │ │ ├── palette-8-1.8-tRNS.png │ │ │ │ ├── palette-8-1.8.png │ │ │ │ ├── palette-8-linear-tRNS.png │ │ │ │ ├── palette-8-linear.png │ │ │ │ ├── palette-8-sRGB-tRNS.png │ │ │ │ ├── palette-8-sRGB.png │ │ │ │ ├── palette-8-tRNS.png │ │ │ │ ├── palette-8.png │ │ │ │ ├── rgb-16-1.8-tRNS.png │ │ │ │ ├── rgb-16-1.8.png │ │ │ │ ├── rgb-16-linear-tRNS.png │ │ │ │ ├── rgb-16-linear.png │ │ │ │ ├── rgb-16-sRGB-tRNS.png │ │ │ │ ├── rgb-16-sRGB.png │ │ │ │ ├── rgb-16-tRNS.png │ │ │ │ ├── rgb-16.png │ │ │ │ ├── rgb-8-1.8-tRNS.png │ │ │ │ ├── rgb-8-1.8.png │ │ │ │ ├── rgb-8-linear-tRNS.png │ │ │ │ ├── rgb-8-linear.png │ │ │ │ ├── rgb-8-sRGB-tRNS.png │ │ │ │ ├── rgb-8-sRGB.png │ │ │ │ ├── rgb-8-tRNS.png │ │ │ │ ├── rgb-8.png │ │ │ │ ├── rgb-alpha-16-1.8.png │ │ │ │ ├── rgb-alpha-16-linear.png │ │ │ │ ├── rgb-alpha-16-sRGB.png │ │ │ │ ├── rgb-alpha-16.png │ │ │ │ ├── rgb-alpha-8-1.8.png │ │ │ │ ├── rgb-alpha-8-linear.png │ │ │ │ ├── rgb-alpha-8-sRGB.png │ │ │ │ └── rgb-alpha-8.png │ │ │ ├── tools │ │ │ │ ├── README.txt │ │ │ │ ├── checksum-icc.c │ │ │ │ ├── chkfmt │ │ │ │ ├── cvtcolor.c │ │ │ │ ├── genpng.c │ │ │ │ ├── intgamma.sh │ │ │ │ ├── makesRGB.c │ │ │ │ ├── png-fix-itxt.c │ │ │ │ ├── pngcp.c │ │ │ │ ├── pngfix.c │ │ │ │ ├── reindent │ │ │ │ └── sRGB.h │ │ │ └── visupng │ │ │ │ ├── PngFile.c │ │ │ │ ├── PngFile.h │ │ │ │ ├── README.txt │ │ │ │ ├── VisualPng.c │ │ │ │ ├── VisualPng.dsp │ │ │ │ ├── VisualPng.dsw │ │ │ │ ├── VisualPng.ico │ │ │ │ ├── VisualPng.png │ │ │ │ ├── VisualPng.rc │ │ │ │ ├── cexcept.h │ │ │ │ └── resource.h │ │ ├── example.c │ │ ├── intel │ │ │ ├── filter_sse2_intrinsics.c │ │ │ └── intel_init.c │ │ ├── libpng-config.in │ │ ├── libpng-manual.txt │ │ ├── libpng.3 │ │ ├── libpng.pc.in │ │ ├── libpngpf.3 │ │ ├── mips │ │ │ ├── filter_msa_intrinsics.c │ │ │ └── mips_init.c │ │ ├── png.5 │ │ ├── png.c │ │ ├── png.h │ │ ├── pngbar.jpg │ │ ├── pngbar.png │ │ ├── pngconf.h │ │ ├── pngdebug.h │ │ ├── pngerror.c │ │ ├── pngget.c │ │ ├── pnginfo.h │ │ ├── pnglibconf.h │ │ ├── pngmem.c │ │ ├── pngnow.png │ │ ├── pngpread.c │ │ ├── pngpriv.h │ │ ├── pngread.c │ │ ├── pngrio.c │ │ ├── pngrtran.c │ │ ├── pngrutil.c │ │ ├── pngset.c │ │ ├── pngstruct.h │ │ ├── pngtest.c │ │ ├── pngtest.png │ │ ├── pngtrans.c │ │ ├── pngusr.dfa │ │ ├── pngwio.c │ │ ├── pngwrite.c │ │ ├── pngwtran.c │ │ ├── pngwutil.c │ │ ├── powerpc │ │ │ ├── filter_vsx_intrinsics.c │ │ │ └── powerpc_init.c │ │ ├── projects │ │ │ ├── owatcom │ │ │ │ ├── libpng.tgt │ │ │ │ ├── libpng.wpj │ │ │ │ ├── pngconfig.mak │ │ │ │ ├── pngstest.tgt │ │ │ │ ├── pngtest.tgt │ │ │ │ └── pngvalid.tgt │ │ │ ├── visualc71 │ │ │ │ ├── PRJ0041.mak │ │ │ │ ├── README.txt │ │ │ │ ├── README_zlib.txt │ │ │ │ ├── libpng.sln │ │ │ │ ├── libpng.vcproj │ │ │ │ ├── pngtest.vcproj │ │ │ │ └── zlib.vcproj │ │ │ └── vstudio │ │ │ │ ├── README.txt │ │ │ │ ├── libpng │ │ │ │ └── libpng.vcxproj │ │ │ │ ├── pnglibconf │ │ │ │ └── pnglibconf.vcxproj │ │ │ │ ├── pngstest │ │ │ │ └── pngstest.vcxproj │ │ │ │ ├── pngtest │ │ │ │ └── pngtest.vcxproj │ │ │ │ ├── pngunknown │ │ │ │ └── pngunknown.vcxproj │ │ │ │ ├── pngvalid │ │ │ │ └── pngvalid.vcxproj │ │ │ │ ├── vstudio.sln │ │ │ │ ├── zlib.props │ │ │ │ └── zlib │ │ │ │ └── zlib.vcxproj │ │ ├── scripts │ │ │ ├── README.txt │ │ │ ├── SCOPTIONS.ppc │ │ │ ├── checksym.awk │ │ │ ├── descrip.mms │ │ │ ├── dfn.awk │ │ │ ├── genchk.cmake.in │ │ │ ├── genout.cmake.in │ │ │ ├── gensrc.cmake.in │ │ │ ├── intprefix.c │ │ │ ├── libpng-config-body.in │ │ │ ├── libpng-config-head.in │ │ │ ├── libpng.pc.in │ │ │ ├── libtool.m4 │ │ │ ├── ltoptions.m4 │ │ │ ├── ltsugar.m4 │ │ │ ├── ltversion.m4 │ │ │ ├── lt~obsolete.m4 │ │ │ ├── macro.lst │ │ │ ├── makefile.32sunu │ │ │ ├── makefile.64sunu │ │ │ ├── makefile.acorn │ │ │ ├── makefile.aix │ │ │ ├── makefile.amiga │ │ │ ├── makefile.atari │ │ │ ├── makefile.bc32 │ │ │ ├── makefile.beos │ │ │ ├── makefile.cegcc │ │ │ ├── makefile.darwin │ │ │ ├── makefile.dec │ │ │ ├── makefile.dj2 │ │ │ ├── makefile.freebsd │ │ │ ├── makefile.gcc │ │ │ ├── makefile.hp64 │ │ │ ├── makefile.hpgcc │ │ │ ├── makefile.hpux │ │ │ ├── makefile.ibmc │ │ │ ├── makefile.intel │ │ │ ├── makefile.linux │ │ │ ├── makefile.linux-opt │ │ │ ├── makefile.mips │ │ │ ├── makefile.msys │ │ │ ├── makefile.ne12bsd │ │ │ ├── makefile.netbsd │ │ │ ├── makefile.openbsd │ │ │ ├── makefile.sco │ │ │ ├── makefile.sggcc │ │ │ ├── makefile.sgi │ │ │ ├── makefile.so9 │ │ │ ├── makefile.solaris │ │ │ ├── makefile.std │ │ │ ├── makefile.sunos │ │ │ ├── makefile.vcwin32 │ │ │ ├── makevms.com │ │ │ ├── options.awk │ │ │ ├── pnglibconf.dfa │ │ │ ├── pnglibconf.h.prebuilt │ │ │ ├── pnglibconf.mak │ │ │ ├── pngwin.rc │ │ │ ├── prefix.c │ │ │ ├── smakefile.ppc │ │ │ ├── sym.c │ │ │ ├── symbols.c │ │ │ ├── symbols.def │ │ │ ├── test.cmake.in │ │ │ └── vers.c │ │ └── tests │ │ │ ├── pngimage-full │ │ │ ├── pngimage-quick │ │ │ ├── pngstest │ │ │ ├── pngstest-1.8 │ │ │ ├── pngstest-1.8-alpha │ │ │ ├── pngstest-linear │ │ │ ├── pngstest-linear-alpha │ │ │ ├── pngstest-none │ │ │ ├── pngstest-none-alpha │ │ │ ├── pngstest-sRGB │ │ │ ├── pngstest-sRGB-alpha │ │ │ ├── pngtest │ │ │ ├── pngtest-badpngs │ │ │ ├── pngunknown-IDAT │ │ │ ├── pngunknown-discard │ │ │ ├── pngunknown-if-safe │ │ │ ├── pngunknown-sAPI │ │ │ ├── pngunknown-sTER │ │ │ ├── pngunknown-save │ │ │ ├── pngunknown-vpAg │ │ │ ├── pngvalid-gamma-16-to-8 │ │ │ ├── pngvalid-gamma-alpha-mode │ │ │ ├── pngvalid-gamma-background │ │ │ ├── pngvalid-gamma-expand16-alpha-mode │ │ │ ├── pngvalid-gamma-expand16-background │ │ │ ├── pngvalid-gamma-expand16-transform │ │ │ ├── pngvalid-gamma-sbit │ │ │ ├── pngvalid-gamma-threshold │ │ │ ├── pngvalid-gamma-transform │ │ │ ├── pngvalid-progressive-interlace-standard │ │ │ ├── pngvalid-progressive-size │ │ │ ├── pngvalid-progressive-standard │ │ │ ├── pngvalid-standard │ │ │ └── pngvalid-transform │ ├── libpng.test │ └── version.ac ├── lua53 │ ├── ChangeLog │ ├── Makefile.am │ ├── Makefile.in │ ├── TLpatches │ │ ├── ChangeLog │ │ ├── patch-01-utf-8 │ │ ├── patch-02-FreeBSD │ │ └── patch-03-export │ ├── ac │ │ └── withenable.ac │ ├── aclocal.m4 │ ├── config.h.in │ ├── configure │ ├── configure.ac │ ├── error.exp │ ├── include │ │ ├── Makefile.am │ │ └── Makefile.in │ ├── lua53-src │ │ ├── Makefile │ │ ├── README │ │ ├── doc │ │ │ ├── contents.html │ │ │ ├── index.css │ │ │ ├── logo.gif │ │ │ ├── lua.1 │ │ │ ├── lua.css │ │ │ ├── luac.1 │ │ │ ├── manual.css │ │ │ ├── manual.html │ │ │ ├── osi-certified-72x60.png │ │ │ └── readme.html │ │ └── src │ │ │ ├── Makefile │ │ │ ├── lapi.c │ │ │ ├── lapi.h │ │ │ ├── lauxlib.c │ │ │ ├── lauxlib.h │ │ │ ├── lbaselib.c │ │ │ ├── lbitlib.c │ │ │ ├── lcode.c │ │ │ ├── lcode.h │ │ │ ├── lcorolib.c │ │ │ ├── lctype.c │ │ │ ├── lctype.h │ │ │ ├── lctype.h.orig │ │ │ ├── ldblib.c │ │ │ ├── ldebug.c │ │ │ ├── ldebug.h │ │ │ ├── ldo.c │ │ │ ├── ldo.h │ │ │ ├── ldump.c │ │ │ ├── lfunc.c │ │ │ ├── lfunc.h │ │ │ ├── lgc.c │ │ │ ├── lgc.h │ │ │ ├── linit.c │ │ │ ├── liolib.c │ │ │ ├── liolib.c.orig │ │ │ ├── llex.c │ │ │ ├── llex.h │ │ │ ├── llimits.h │ │ │ ├── lmathlib.c │ │ │ ├── lmem.c │ │ │ ├── lmem.h │ │ │ ├── loadlib.c │ │ │ ├── lobject.c │ │ │ ├── lobject.h │ │ │ ├── lopcodes.c │ │ │ ├── lopcodes.h │ │ │ ├── lopcodes.h.orig │ │ │ ├── loslib.c │ │ │ ├── lparser.c │ │ │ ├── lparser.h │ │ │ ├── lprefix.h │ │ │ ├── lstate.c │ │ │ ├── lstate.h │ │ │ ├── lstring.c │ │ │ ├── lstring.h │ │ │ ├── lstrlib.c │ │ │ ├── ltable.c │ │ │ ├── ltable.h │ │ │ ├── ltablib.c │ │ │ ├── ltm.c │ │ │ ├── ltm.h │ │ │ ├── lua.c │ │ │ ├── lua.h │ │ │ ├── lua.hpp │ │ │ ├── luac.c │ │ │ ├── luaconf.h │ │ │ ├── lualib.h │ │ │ ├── lundump.c │ │ │ ├── lundump.h │ │ │ ├── lundump.h.orig │ │ │ ├── lutf8lib.c │ │ │ ├── lvm.c │ │ │ ├── lvm.h │ │ │ ├── lzio.c │ │ │ └── lzio.h │ ├── lua53.test │ ├── luaerror.test │ ├── luatest.c │ ├── texlua53.pc.in │ └── version.ac ├── zlib │ ├── ChangeLog │ ├── Makefile.am │ ├── Makefile.in │ ├── README │ ├── TLpatches │ │ ├── ChangeLog │ │ ├── TL-Changes │ │ └── patch-01-not-define-WIDECHAR-for-cygwin │ ├── ac │ │ ├── withenable.ac │ │ └── zlib.ac │ ├── aclocal.m4 │ ├── config.h.in │ ├── configure │ ├── configure.ac │ ├── include │ │ ├── Makefile.am │ │ └── Makefile.in │ ├── version.ac │ ├── zlib-src │ │ ├── CMakeLists.txt │ │ ├── ChangeLog │ │ ├── FAQ │ │ ├── INDEX │ │ ├── Makefile.in │ │ ├── README │ │ ├── adler32.c │ │ ├── amiga │ │ │ ├── Makefile.pup │ │ │ └── Makefile.sas │ │ ├── compress.c │ │ ├── configure │ │ ├── contrib │ │ │ ├── README.contrib │ │ │ ├── ada │ │ │ │ ├── buffer_demo.adb │ │ │ │ ├── mtest.adb │ │ │ │ ├── read.adb │ │ │ │ ├── readme.txt │ │ │ │ ├── test.adb │ │ │ │ ├── zlib-streams.adb │ │ │ │ ├── zlib-streams.ads │ │ │ │ ├── zlib-thin.adb │ │ │ │ ├── zlib-thin.ads │ │ │ │ ├── zlib.adb │ │ │ │ ├── zlib.ads │ │ │ │ └── zlib.gpr │ │ │ ├── amd64 │ │ │ │ └── amd64-match.S │ │ │ ├── asm686 │ │ │ │ ├── README.686 │ │ │ │ └── match.S │ │ │ ├── blast │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── blast.c │ │ │ │ ├── blast.h │ │ │ │ ├── test.pk │ │ │ │ └── test.txt │ │ │ ├── delphi │ │ │ │ ├── ZLib.pas │ │ │ │ ├── ZLibConst.pas │ │ │ │ ├── readme.txt │ │ │ │ └── zlibd32.mak │ │ │ ├── dotzlib │ │ │ │ ├── DotZLib.build │ │ │ │ ├── DotZLib.chm │ │ │ │ ├── DotZLib.sln │ │ │ │ ├── DotZLib │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ ├── ChecksumImpl.cs │ │ │ │ │ ├── CircularBuffer.cs │ │ │ │ │ ├── CodecBase.cs │ │ │ │ │ ├── Deflater.cs │ │ │ │ │ ├── DotZLib.cs │ │ │ │ │ ├── DotZLib.csproj │ │ │ │ │ ├── GZipStream.cs │ │ │ │ │ ├── Inflater.cs │ │ │ │ │ └── UnitTests.cs │ │ │ │ ├── LICENSE_1_0.txt │ │ │ │ └── readme.txt │ │ │ ├── gcc_gvmat64 │ │ │ │ └── gvmat64.S │ │ │ ├── infback9 │ │ │ │ ├── README │ │ │ │ ├── infback9.c │ │ │ │ ├── infback9.h │ │ │ │ ├── inffix9.h │ │ │ │ ├── inflate9.h │ │ │ │ ├── inftree9.c │ │ │ │ └── inftree9.h │ │ │ ├── inflate86 │ │ │ │ ├── inffas86.c │ │ │ │ └── inffast.S │ │ │ ├── iostream │ │ │ │ ├── test.cpp │ │ │ │ ├── zfstream.cpp │ │ │ │ └── zfstream.h │ │ │ ├── iostream2 │ │ │ │ ├── zstream.h │ │ │ │ └── zstream_test.cpp │ │ │ ├── iostream3 │ │ │ │ ├── README │ │ │ │ ├── TODO │ │ │ │ ├── test.cc │ │ │ │ ├── zfstream.cc │ │ │ │ └── zfstream.h │ │ │ ├── masmx64 │ │ │ │ ├── bld_ml64.bat │ │ │ │ ├── gvmat64.asm │ │ │ │ ├── inffas8664.c │ │ │ │ ├── inffasx64.asm │ │ │ │ └── readme.txt │ │ │ ├── masmx86 │ │ │ │ ├── bld_ml32.bat │ │ │ │ ├── inffas32.asm │ │ │ │ ├── match686.asm │ │ │ │ └── readme.txt │ │ │ ├── minizip │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.am │ │ │ │ ├── MiniZip64_Changes.txt │ │ │ │ ├── MiniZip64_info.txt │ │ │ │ ├── configure.ac │ │ │ │ ├── crypt.h │ │ │ │ ├── ioapi.c │ │ │ │ ├── ioapi.h │ │ │ │ ├── iowin32.c │ │ │ │ ├── iowin32.h │ │ │ │ ├── make_vms.com │ │ │ │ ├── miniunz.c │ │ │ │ ├── miniunzip.1 │ │ │ │ ├── minizip.1 │ │ │ │ ├── minizip.c │ │ │ │ ├── minizip.pc.in │ │ │ │ ├── mztools.c │ │ │ │ ├── mztools.h │ │ │ │ ├── unzip.c │ │ │ │ ├── unzip.h │ │ │ │ ├── zip.c │ │ │ │ └── zip.h │ │ │ ├── pascal │ │ │ │ ├── example.pas │ │ │ │ ├── readme.txt │ │ │ │ ├── zlibd32.mak │ │ │ │ └── zlibpas.pas │ │ │ ├── puff │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── puff.c │ │ │ │ ├── puff.h │ │ │ │ ├── pufftest.c │ │ │ │ └── zeros.raw │ │ │ ├── testzlib │ │ │ │ ├── testzlib.c │ │ │ │ └── testzlib.txt │ │ │ ├── untgz │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.msc │ │ │ │ └── untgz.c │ │ │ └── vstudio │ │ │ │ ├── readme.txt │ │ │ │ ├── vc10 │ │ │ │ ├── miniunz.vcxproj │ │ │ │ ├── miniunz.vcxproj.filters │ │ │ │ ├── minizip.vcxproj │ │ │ │ ├── minizip.vcxproj.filters │ │ │ │ ├── testzlib.vcxproj │ │ │ │ ├── testzlib.vcxproj.filters │ │ │ │ ├── testzlibdll.vcxproj │ │ │ │ ├── testzlibdll.vcxproj.filters │ │ │ │ ├── zlib.rc │ │ │ │ ├── zlibstat.vcxproj │ │ │ │ ├── zlibstat.vcxproj.filters │ │ │ │ ├── zlibvc.def │ │ │ │ ├── zlibvc.sln │ │ │ │ ├── zlibvc.vcxproj │ │ │ │ └── zlibvc.vcxproj.filters │ │ │ │ ├── vc11 │ │ │ │ ├── miniunz.vcxproj │ │ │ │ ├── minizip.vcxproj │ │ │ │ ├── testzlib.vcxproj │ │ │ │ ├── testzlibdll.vcxproj │ │ │ │ ├── zlib.rc │ │ │ │ ├── zlibstat.vcxproj │ │ │ │ ├── zlibvc.def │ │ │ │ ├── zlibvc.sln │ │ │ │ └── zlibvc.vcxproj │ │ │ │ ├── vc12 │ │ │ │ ├── miniunz.vcxproj │ │ │ │ ├── minizip.vcxproj │ │ │ │ ├── testzlib.vcxproj │ │ │ │ ├── testzlibdll.vcxproj │ │ │ │ ├── zlib.rc │ │ │ │ ├── zlibstat.vcxproj │ │ │ │ ├── zlibvc.def │ │ │ │ ├── zlibvc.sln │ │ │ │ └── zlibvc.vcxproj │ │ │ │ ├── vc14 │ │ │ │ ├── miniunz.vcxproj │ │ │ │ ├── minizip.vcxproj │ │ │ │ ├── testzlib.vcxproj │ │ │ │ ├── testzlibdll.vcxproj │ │ │ │ ├── zlib.rc │ │ │ │ ├── zlibstat.vcxproj │ │ │ │ ├── zlibvc.def │ │ │ │ ├── zlibvc.sln │ │ │ │ └── zlibvc.vcxproj │ │ │ │ └── vc9 │ │ │ │ ├── miniunz.vcproj │ │ │ │ ├── minizip.vcproj │ │ │ │ ├── testzlib.vcproj │ │ │ │ ├── testzlibdll.vcproj │ │ │ │ ├── zlib.rc │ │ │ │ ├── zlibstat.vcproj │ │ │ │ ├── zlibvc.def │ │ │ │ ├── zlibvc.sln │ │ │ │ └── zlibvc.vcproj │ │ ├── crc32.c │ │ ├── crc32.h │ │ ├── deflate.c │ │ ├── deflate.h │ │ ├── doc │ │ │ ├── algorithm.txt │ │ │ └── txtvsbin.txt │ │ ├── examples │ │ │ ├── README.examples │ │ │ ├── enough.c │ │ │ ├── fitblk.c │ │ │ ├── gun.c │ │ │ ├── gzappend.c │ │ │ ├── gzjoin.c │ │ │ ├── gzlog.c │ │ │ ├── gzlog.h │ │ │ ├── zlib_how.html │ │ │ ├── zpipe.c │ │ │ └── zran.c │ │ ├── gzclose.c │ │ ├── gzguts.h │ │ ├── gzlib.c │ │ ├── gzread.c │ │ ├── gzwrite.c │ │ ├── infback.c │ │ ├── inffast.c │ │ ├── inffast.h │ │ ├── inffixed.h │ │ ├── inflate.c │ │ ├── inflate.h │ │ ├── inftrees.c │ │ ├── inftrees.h │ │ ├── make_vms.com │ │ ├── msdos │ │ │ ├── Makefile.bor │ │ │ ├── Makefile.dj2 │ │ │ ├── Makefile.emx │ │ │ ├── Makefile.msc │ │ │ └── Makefile.tc │ │ ├── nintendods │ │ │ ├── Makefile │ │ │ └── README │ │ ├── old │ │ │ ├── Makefile.emx │ │ │ ├── Makefile.riscos │ │ │ ├── README │ │ │ ├── descrip.mms │ │ │ ├── os2 │ │ │ │ ├── Makefile.os2 │ │ │ │ └── zlib.def │ │ │ └── visual-basic.txt │ │ ├── os400 │ │ │ ├── README400 │ │ │ ├── bndsrc │ │ │ ├── make.sh │ │ │ └── zlib.inc │ │ ├── qnx │ │ │ └── package.qpg │ │ ├── test │ │ │ ├── example.c │ │ │ ├── infcover.c │ │ │ └── minigzip.c │ │ ├── treebuild.xml │ │ ├── trees.c │ │ ├── trees.h │ │ ├── uncompr.c │ │ ├── watcom │ │ │ ├── watcom_f.mak │ │ │ └── watcom_l.mak │ │ ├── win32 │ │ │ ├── DLL_FAQ.txt │ │ │ ├── Makefile.bor │ │ │ ├── Makefile.gcc │ │ │ ├── Makefile.msc │ │ │ ├── README-WIN32.txt │ │ │ ├── VisualC.txt │ │ │ ├── zlib.def │ │ │ └── zlib1.rc │ │ ├── zconf.h.cmakein │ │ ├── zconf.h.in │ │ ├── zlib.3 │ │ ├── zlib.3.pdf │ │ ├── zlib.h │ │ ├── zlib.map │ │ ├── zlib.pc.cmakein │ │ ├── zlib.pc.in │ │ ├── zlib2ansi │ │ ├── zutil.c │ │ └── zutil.h │ └── zlib.test └── zziplib │ ├── ChangeLog │ ├── Makefile.am │ ├── Makefile.in │ ├── README │ ├── TLpatches │ ├── ChangeLog │ ├── TL-Changes │ ├── patch-01-header │ └── patch-05-no-const │ ├── ac │ ├── withenable.ac │ └── zziplib.ac │ ├── aclocal.m4 │ ├── config.h.in │ ├── configure │ ├── configure.ac │ ├── include │ └── zzip │ │ ├── Makefile.am │ │ └── Makefile.in │ ├── m4 │ ├── ac_sys_largefile_sensitive.m4 │ ├── ax_prefix_config_h.m4 │ └── zziplib-aligned-access.m4 │ ├── version.ac │ ├── zziplib-src │ ├── COPYING.LIB │ ├── ChangeLog │ ├── Makefile.am │ ├── Makefile.in │ ├── Makefile.mk │ ├── README │ ├── SDL │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── SDL_rwops_zzcat.c │ │ ├── SDL_rwops_zzip.c │ │ ├── SDL_rwops_zzip.h │ │ ├── zzip-sdl-config.pc │ │ └── zzip-sdl-rwops.pc │ ├── TODO │ ├── bins │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── unzip-mem.c │ │ ├── unzzip-states.h │ │ ├── unzzip.c │ │ ├── unzzipcat-big.c │ │ ├── unzzipcat-mem.c │ │ ├── unzzipcat-mix.c │ │ ├── unzzipcat-zip.c │ │ ├── unzzipcat-zip.h │ │ ├── unzzipdir-big.c │ │ ├── unzzipdir-mem.c │ │ ├── unzzipdir-mix.c │ │ ├── unzzipdir-zip.c │ │ ├── unzzipdir-zip.h │ │ ├── unzzipshow.c │ │ ├── zzcat.c │ │ ├── zzdir.c │ │ ├── zzip.c │ │ ├── zziplib.m4 │ │ ├── zzipmake-zip.c │ │ ├── zzipmake-zip.h │ │ ├── zziptest.c │ │ ├── zzobfuscated.c │ │ ├── zzxorcat.c │ │ ├── zzxorcopy.c │ │ └── zzxordir.c │ ├── config.h.in │ ├── configure │ ├── configure.ac │ ├── docs │ │ ├── 64on32.htm │ │ ├── COPYING.LIB │ │ ├── COPYING.MPL │ │ ├── COPYING.ZLIB │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README.MSVC6 │ │ ├── README.SDL │ │ ├── body.htm │ │ ├── configs.htm │ │ ├── copying.htm │ │ ├── cpp2markdown-1.py │ │ ├── cpp2markdown.py │ │ ├── dbk2man.py │ │ ├── developer.htm │ │ ├── dir-zzip-192.png │ │ ├── dir-zzip-64.png │ │ ├── download.htm │ │ ├── faq.htm │ │ ├── fseeko.htm │ │ ├── functions.htm │ │ ├── future.htm │ │ ├── history.htm │ │ ├── make-dbk.pl │ │ ├── make-doc.pl │ │ ├── make-doc.py │ │ ├── makedocs.py │ │ ├── memdisk.htm │ │ ├── mksite.pl │ │ ├── mksite.sh │ │ ├── mmapped.htm │ │ ├── notes.htm │ │ ├── referentials.htm │ │ ├── sdocbook.css │ │ ├── sfx-make.htm │ │ ├── site.htm │ │ ├── zip-php.htm │ │ ├── zzip-api.htm │ │ ├── zzip-basics.htm │ │ ├── zzip-crypt.htm │ │ ├── zzip-cryptoid.htm │ │ ├── zzip-extio.htm │ │ ├── zzip-extras.htm │ │ ├── zzip-file.htm │ │ ├── zzip-index.htm │ │ ├── zzip-parse.htm │ │ ├── zzip-sdl-rwops.htm │ │ ├── zzip-xor.htm │ │ ├── zzip-zip.htm │ │ ├── zzipdoc │ │ │ ├── __init__.py │ │ │ ├── commentmarkup.py │ │ │ ├── dbk2htm.py │ │ │ ├── docbookdocument.py │ │ │ ├── functionheader.py │ │ │ ├── functionlisthtmlpage.py │ │ │ ├── functionlistreference.py │ │ │ ├── functionprototype.py │ │ │ ├── htm2dbk.py │ │ │ ├── htmldocument.py │ │ │ ├── match.py │ │ │ ├── options.py │ │ │ ├── textfile.py │ │ │ └── textfileheader.py │ │ ├── zziplib-manpages.dbk │ │ ├── zziplib-master.dbk │ │ └── zziplib.html │ ├── m4 │ │ ├── ac_compile_check_sizeof.m4 │ │ ├── ac_set_default_paths_system.m4 │ │ ├── ac_sys_largefile_sensitive.m4 │ │ ├── acx_restrict.m4 │ │ ├── ax_cflags_gcc_option.m4 │ │ ├── ax_cflags_no_writable_strings.m4 │ │ ├── ax_cflags_strict_prototypes.m4 │ │ ├── ax_cflags_warn_all.m4 │ │ ├── ax_check_aligned_access_required.m4 │ │ ├── ax_check_enable_debug.m4 │ │ ├── ax_configure_args.m4 │ │ ├── ax_create_pkgconfig_info.m4 │ │ ├── ax_enable_builddir.m4 │ │ ├── ax_enable_builddir_uname.m4 │ │ ├── ax_expand_prefix.m4 │ │ ├── ax_maintainer_mode_auto_silent.m4 │ │ ├── ax_not_enable_frame_pointer.m4 │ │ ├── ax_pax_tar.m4 │ │ ├── ax_prefix_config_h.m4 │ │ ├── ax_set_version_info.m4 │ │ ├── ax_spec_file.m4 │ │ ├── ax_spec_package_version.m4 │ │ ├── ax_warning_default_aclocaldir.m4 │ │ ├── ax_warning_default_pkgconfig.m4 │ │ ├── libtool.m4 │ │ ├── ltoptions.m4 │ │ ├── ltsugar.m4 │ │ ├── ltversion.m4 │ │ ├── lt~obsolete.m4 │ │ ├── patch_libtool_on_darwin_zsh_overquoting.m4 │ │ ├── patch_libtool_sys_lib_search_path_spec.m4 │ │ └── patch_libtool_to_add_host_cc.m4 │ ├── msvc6 │ │ ├── zzcat.dsp │ │ ├── zzdir.dsp │ │ ├── zzip.dsp │ │ ├── zziplib.dsp │ │ ├── zziplib.dsw │ │ ├── zziptest.dsp │ │ ├── zzipwrap.dsp │ │ └── zzobfuscated.dsp │ ├── msvc7 │ │ ├── README.TXT │ │ ├── pkzip.exe │ │ ├── test.zip │ │ ├── test1.zip │ │ ├── zip.exe │ │ ├── zzcat.sln │ │ ├── zzcat.vcproj │ │ ├── zzdir.sln │ │ ├── zzdir.vcproj │ │ ├── zzip.sln │ │ ├── zzip.vcproj │ │ ├── zziplib.sln │ │ ├── zziplib.vcproj │ │ ├── zzipself.bat │ │ ├── zzipself.sln │ │ ├── zzipself.txt │ │ ├── zzipself.vcproj │ │ ├── zzipsetstub.sln │ │ ├── zzipsetstub.vcproj │ │ ├── zziptest.sln │ │ ├── zziptest.vcproj │ │ ├── zzobfuscated.sln │ │ └── zzobfuscated.vcproj │ ├── msvc8 │ │ ├── README.TXT │ │ ├── test.zip │ │ ├── test1.zip │ │ ├── zip.exe │ │ ├── zzcat.sln │ │ ├── zzcat.vcproj │ │ ├── zzdir.sln │ │ ├── zzdir.vcproj │ │ ├── zzip.sln │ │ ├── zzip.vcproj │ │ ├── zzipfseeko.vcproj │ │ ├── zziplib.sln │ │ ├── zziplib.vcproj │ │ ├── zzipmmapped.vcproj │ │ ├── zzipself.bat │ │ ├── zzipself.sln │ │ ├── zzipself.txt │ │ ├── zzipself.vcproj │ │ ├── zzipsetstub.sln │ │ ├── zzipsetstub.vcproj │ │ ├── zziptest.sln │ │ ├── zziptest.vcproj │ │ ├── zzobfuscated.sln │ │ └── zzobfuscated.vcproj │ ├── ports │ │ └── symbian-S60 │ │ │ └── zziplib-symbian.zip │ ├── test │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README │ │ ├── test.zip │ │ ├── zzipself.c │ │ ├── zzipsetstub.c │ │ └── zziptests.py │ ├── zzip │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── __debug.h │ │ ├── __dirent.h │ │ ├── __errno.h │ │ ├── __fnmatch.h │ │ ├── __hints.h │ │ ├── __mkdir.h │ │ ├── __mmap.h │ │ ├── __string.h │ │ ├── _msvc.sed │ │ ├── autoconf.h │ │ ├── conf.h │ │ ├── dir.c │ │ ├── err.c │ │ ├── fetch.c │ │ ├── fetch.h │ │ ├── file.c │ │ ├── file.h │ │ ├── format.h │ │ ├── fseeko.c │ │ ├── fseeko.h │ │ ├── info.c │ │ ├── info.h │ │ ├── lib.h │ │ ├── memdisk.c │ │ ├── memdisk.h │ │ ├── mmapped.c │ │ ├── mmapped.h │ │ ├── plugin.c │ │ ├── plugin.h │ │ ├── stat.c │ │ ├── stdint.h │ │ ├── types.h │ │ ├── write.c │ │ ├── write.h │ │ ├── zip.c │ │ ├── zzip.h │ │ ├── zzip32.h │ │ └── zziplib.wpj │ ├── zzipback.sed │ ├── zziplib.spec │ └── zzipwrap │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── wrap.c │ │ ├── wrap.h │ │ ├── zzipwrap.c │ │ └── zzipwrap.pc │ └── zziplib.test ├── m4 ├── ChangeLog ├── README ├── ax_cxx_compile_stdcxx.m4 ├── kpse-asm.m4 ├── kpse-cairo-flags.m4 ├── kpse-common.m4 ├── kpse-cross.m4 ├── kpse-cxx-hack.m4 ├── kpse-dll-name.m4 ├── kpse-fontconfig-flags.m4 ├── kpse-freetype2-flags.m4 ├── kpse-gd-flags.m4 ├── kpse-gmp-flags.m4 ├── kpse-graphite2-flags.m4 ├── kpse-harfbuzz-flags.m4 ├── kpse-icu-flags.m4 ├── kpse-kpathsea-flags.m4 ├── kpse-largefile.m4 ├── kpse-lex.m4 ├── kpse-lib-version.m4 ├── kpse-libpaper-flags.m4 ├── kpse-libpng-flags.m4 ├── kpse-lt-hack.m4 ├── kpse-lua52-flags.m4 ├── kpse-lua53-flags.m4 ├── kpse-luajit-flags.m4 ├── kpse-macos-framework.m4 ├── kpse-mktex.m4 ├── kpse-mpfr-flags.m4 ├── kpse-options.m4 ├── kpse-pixman-flags.m4 ├── kpse-pkgs.m4 ├── kpse-poppler-flags.m4 ├── kpse-progs.m4 ├── kpse-ptexenc-flags.m4 ├── kpse-search-libs.m4 ├── kpse-setup.m4 ├── kpse-size-max.m4 ├── kpse-socket-libs.m4 ├── kpse-teckit-flags.m4 ├── kpse-visibility.m4 ├── kpse-warnings.m4 ├── kpse-web2c.m4 ├── kpse-win32.m4 ├── kpse-xpdf-flags.m4 ├── kpse-zlib-flags.m4 ├── kpse-zziplib-flags.m4 ├── libtool.m4 ├── ltoptions.m4 ├── ltsugar.m4 ├── ltversion.m4 └── lt~obsolete.m4 ├── reautoconf ├── tardate.ac ├── texk ├── ChangeLog ├── Makefile.am ├── Makefile.in ├── README ├── aclocal.m4 ├── configure ├── configure.ac ├── kpathsea │ ├── AUTHORS │ ├── ChangeLog │ ├── Makefile.am │ ├── Makefile.in │ ├── NEWS │ ├── PROJECTS │ ├── README │ ├── absolute.c │ ├── absolute.h │ ├── ac │ │ ├── kpathsea.ac │ │ ├── mktex.ac │ │ └── withenable.ac │ ├── access.c │ ├── aclocal.m4 │ ├── atou.c │ ├── bsnl.awk │ ├── c-auto.in │ ├── c-ctype.h │ ├── c-dir.h │ ├── c-errno.h │ ├── c-fopen.h │ ├── c-limits.h │ ├── c-memstr.h │ ├── c-minmax.h │ ├── c-namemx.h │ ├── c-pathch.h │ ├── c-pathmx.h │ ├── c-proto.h │ ├── c-stat.h │ ├── c-std.h │ ├── c-unistd.h │ ├── cnf-to-paths.awk │ ├── cnf.c │ ├── cnf.h │ ├── concat.c │ ├── concat3.c │ ├── concatn.c │ ├── concatn.h │ ├── config.h │ ├── configure │ ├── configure.ac │ ├── db.c │ ├── db.h │ ├── debug.c │ ├── debug.h │ ├── default.h │ ├── dir.c │ ├── doc │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── kpathsea.info │ │ ├── kpathsea.texi │ │ └── unixtex.texi │ ├── elt-dirs.c │ ├── expand.c │ ├── expand.h │ ├── extend-fname.c │ ├── file-p.c │ ├── find-suffix.c │ ├── fn.c │ ├── fn.h │ ├── fontmap.c │ ├── fontmap.h │ ├── getopt.c │ ├── getopt.h │ ├── getopt1.c │ ├── hash.c │ ├── hash.h │ ├── kdefault.c │ ├── knj.c │ ├── knj.h │ ├── kpathsea.c │ ├── kpathsea.pc.in │ ├── kpsestat.c │ ├── kpsewhich.c │ ├── lib.h │ ├── line.c │ ├── line.h │ ├── magstep.c │ ├── magstep.h │ ├── make-suffix.c │ ├── man │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── kpseaccess.man │ │ ├── kpsereadlink.man │ │ ├── kpsestat.man │ │ ├── kpsewhich.man │ │ ├── mktexlsr.man │ │ ├── mktexmf.man │ │ ├── mktexpk.man │ │ └── mktextfm.man │ ├── mingw32.c │ ├── mingw32.h │ ├── mktex.cnf │ ├── mktex.opt │ ├── mktexdir │ ├── mktexdir.opt │ ├── mktexlsr │ ├── mktexmf │ ├── mktexnam │ ├── mktexnam.opt │ ├── mktexpk │ ├── mktextfm │ ├── mktexupd │ ├── path-elt.c │ ├── pathsearch.c │ ├── pathsearch.h │ ├── proginit.c │ ├── proginit.h │ ├── progname.c │ ├── progname.h │ ├── putenv.c │ ├── readable.c │ ├── readable.h │ ├── readlink.c │ ├── rm-suffix.c │ ├── simpletypes.h │ ├── str-list.c │ ├── str-list.h │ ├── str-llist.c │ ├── str-llist.h │ ├── systypes.h │ ├── tests │ │ ├── cnfnewline.test │ │ ├── cnfnewline │ │ │ └── texmf.cnf │ │ ├── kpseaccess.test │ │ ├── kpsereadlink.test │ │ ├── kpsestat.test │ │ └── kpsewhich.test │ ├── tex-file.c │ ├── tex-file.h │ ├── tex-glyph.c │ ├── tex-glyph.h │ ├── tex-hush.c │ ├── tex-hush.h │ ├── tex-make.c │ ├── tex-make.h │ ├── texmf.cnf │ ├── tilde.c │ ├── tilde.h │ ├── types.h │ ├── uppercasify.c │ ├── variable.c │ ├── variable.h │ ├── version.ac │ ├── version.c │ ├── version.h │ ├── win32 │ │ ├── ChangeLog │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── dirutil.c │ │ ├── getdestdir.c │ │ ├── mkpaths.c │ │ ├── mktex.h │ │ ├── mktexfmt.c │ │ ├── mktexlsr.c │ │ ├── mktexmf.c │ │ ├── mktexpk.c │ │ ├── mktextfm.c │ │ ├── mktexupd.c │ │ └── mktexupdmain.c │ ├── win32lib.c │ ├── win32lib.h │ ├── xbasename.c │ ├── xcalloc.c │ ├── xdirname.c │ ├── xdirtest.c │ ├── xfopen.c │ ├── xfseek.c │ ├── xfseeko.c │ ├── xftell.c │ ├── xftello.c │ ├── xgetcwd.c │ ├── xmalloc.c │ ├── xopendir.c │ ├── xopendir.h │ ├── xputenv.c │ ├── xrealloc.c │ ├── xstat.c │ ├── xstat.h │ └── xstrdup.c ├── texlive │ ├── ChangeLog │ ├── Makefile.am │ ├── Makefile.in │ ├── ac │ │ ├── texlive.ac │ │ └── withenable.ac │ ├── aclocal.m4 │ ├── configure │ ├── configure.ac │ ├── linked_scripts │ │ ├── ChangeLog │ │ ├── Makefile.am │ │ └── Makefile.in │ ├── tests │ │ └── updmap-cmdline-test.pl │ ├── tl_scripts │ │ ├── ChangeLog │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README │ │ ├── allcm.1 │ │ ├── allcm.sh │ │ ├── allec.1 │ │ ├── allneeded.1 │ │ ├── allneeded.sh │ │ ├── dvi2fax.1 │ │ ├── dvi2fax.sh │ │ ├── dvired.1 │ │ ├── dvired.sh │ │ ├── e2pall.1 │ │ ├── e2pall.pl │ │ ├── fmtutil.1 │ │ ├── fmtutil.cnf │ │ ├── fmtutil.cnf.5 │ │ ├── fmtutil.help2man │ │ ├── fontinst.1 │ │ ├── fontinst.sh │ │ ├── kpsetool.1 │ │ ├── kpsetool.sh │ │ ├── kpsewhere.1 │ │ ├── kpsewhere.sh │ │ ├── ps2frag.1 │ │ ├── ps2frag.sh │ │ ├── pslatex.1 │ │ ├── pslatex.sh │ │ ├── rubibtex.1 │ │ ├── rubibtex.sh │ │ ├── rumakeindex.1 │ │ ├── rumakeindex.sh │ │ ├── scripts.lst │ │ ├── tcfmgr │ │ ├── tcfmgr.map │ │ ├── texconfig-dialog.sh │ │ ├── texconfig-sys.sh │ │ ├── texconfig.1 │ │ ├── texconfig.sh │ │ ├── texlinks.1 │ │ ├── texlinks.sh │ │ ├── updmap.1 │ │ ├── updmap.cfg.5 │ │ └── updmap.help2man │ ├── w32_wrapper │ │ ├── calldll.c │ │ ├── callexe.c │ │ ├── context │ │ │ ├── mtxrun.dll │ │ │ ├── mtxrun.exe │ │ │ ├── mtxrun_dll.c │ │ │ ├── mtxrun_exe.c │ │ │ └── readme.txt │ │ ├── readme.txt │ │ ├── runscript.dll │ │ ├── runscript.exe │ │ ├── runscript.tlu │ │ ├── runscript_dll.c │ │ ├── runscript_exe.c │ │ ├── tl-tray-menu.c │ │ ├── tlmgr-gui.txt │ │ └── wrunscript_exe.c │ ├── w64_mingw_wrapper │ │ ├── README │ │ ├── bitmap2eps.ico │ │ ├── bitmap2eps.svg │ │ ├── calldll.c │ │ ├── callexe.c │ │ ├── context │ │ │ ├── mtxrun.dll │ │ │ ├── mtxrun.exe │ │ │ ├── mtxrun_dll.c │ │ │ ├── mtxrun_exe.c │ │ │ └── readme.txt │ │ ├── libkpathsea-6.dll │ │ ├── readme.txt │ │ ├── runscript.dll │ │ ├── runscript.exe │ │ ├── runscript.tlu │ │ ├── runscript_dll.c │ │ ├── runscript_exe.c │ │ ├── texlua.dll │ │ ├── texlua.exe │ │ ├── tl-tray-menu.c │ │ ├── tlmgr-gui.txt │ │ ├── tlmgr.ico │ │ ├── tlmgr.svg │ │ └── wrunscript_exe.c │ └── w64_wrapper │ │ ├── context │ │ ├── mtxrun.dll │ │ └── mtxrun.exe │ │ ├── runscript.dll │ │ └── runscript.exe └── web2c │ ├── AUTHORS │ ├── ChangeLog │ ├── Makefile.am │ ├── Makefile.in │ ├── NEWS │ ├── PROJECTS │ ├── README │ ├── ac │ ├── web2c.ac │ └── withenable.ac │ ├── aclocal.m4 │ ├── alephdir │ └── am │ │ └── aleph.am │ ├── am │ ├── bootstrap.am │ ├── cweb.am │ ├── texmf.am │ └── web.am │ ├── bibtex.ch │ ├── bibtex.test │ ├── bibtex.web │ ├── c-auto.in │ ├── cftests │ ├── cftest.ch │ ├── cftest.p │ ├── cftest.web │ └── ocftest.p │ ├── configure │ ├── configure.ac │ ├── cpascal.h │ ├── ctangleboot-sh.in │ ├── ctangleboot.cin │ ├── ctiedir │ ├── ChangeLog │ ├── Makefile │ ├── README │ ├── ctie-k.ch │ ├── ctie.1 │ ├── ctie.c │ ├── ctie.cf1 │ ├── ctie.cf2 │ ├── ctie.cf3 │ ├── ctie.chf.gen │ ├── ctie.inc │ ├── ctie.inc1 │ ├── ctie.inc2 │ ├── ctie.master.gen │ ├── ctie.test │ ├── ctie.tie │ ├── ctie.w │ └── ctiedoc.tex │ ├── cwebboot.cin │ ├── cwebboot.hin │ ├── cwebdir │ ├── ChangeLog │ ├── Makefile │ ├── README │ ├── c++lib.w │ ├── comm-amiga.ch │ ├── comm-bs.ch │ ├── comm-mac.ch │ ├── comm-man.ch │ ├── comm-os2.ch │ ├── comm-pc.ch │ ├── comm-ql.ch │ ├── comm-vms.ch │ ├── comm-w2c.ch │ ├── comm-w2c.h │ ├── comm-w32.ch │ ├── common.c │ ├── common.h │ ├── common.w │ ├── ctang-bs.ch │ ├── ctang-man.ch │ ├── ctang-pc.ch │ ├── ctang-ql.ch │ ├── ctang-vms.ch │ ├── ctang-w2c.ch │ ├── ctang-w32.ch │ ├── ctangle.c │ ├── ctangle.w │ ├── cweav-bs.ch │ ├── cweav-man.ch │ ├── cweav-pc.ch │ ├── cweav-ql.ch │ ├── cweav-vms.ch │ ├── cweav-w2c.ch │ ├── cweav-w32.ch │ ├── cweave.test │ ├── cweave.w │ ├── cweb.1 │ ├── cweb.el │ ├── cwebmac.tex │ ├── cwebman.tex │ ├── makefile.bs │ ├── prod.w │ └── readme.ql │ ├── doc │ ├── Makefile.am │ ├── Makefile.in │ ├── README │ ├── install.texi │ ├── ref.txi │ ├── web2c.info │ └── web2c.texi │ ├── dvicopy.test │ ├── dvitype.test │ ├── eptexdir │ ├── am │ │ └── eptex.am │ └── eptex_version.h │ ├── etexdir │ ├── am │ │ └── etex.am │ └── etex_version.h │ ├── euptexdir │ └── am │ │ └── euptex.am │ ├── gftodmem.h │ ├── gftodvi.test │ ├── gftopk.test │ ├── gftype.test │ ├── harftexdir │ ├── ChangeLog │ ├── NEWS │ ├── am │ │ ├── harftex.am │ │ ├── libharftex.am │ │ ├── luafontforge.am │ │ └── luaharfbuzz.am │ ├── dvi │ │ ├── dvigen.c │ │ └── dvigen.h │ ├── font │ │ ├── dofont.c │ │ ├── luafont.c │ │ ├── luatexfont.h │ │ ├── mapfile.c │ │ ├── mapfile.h │ │ ├── pdfglyphtounicode-luatex.c │ │ ├── pdfglyphtounicode-pdftex.c │ │ ├── pdfglyphtounicode-readme.txt │ │ ├── pkin.c │ │ ├── sfnt.c │ │ ├── sfnt.h │ │ ├── subfont.c │ │ ├── subfont.txt │ │ ├── texfont.c │ │ ├── texfont.h │ │ ├── tfmofm.c │ │ ├── tounicode.c │ │ ├── tt_glyf.c │ │ ├── tt_glyf.h │ │ ├── tt_table.c │ │ ├── tt_table.h │ │ ├── vfovf.c │ │ ├── vfpacket.c │ │ ├── writecff.c │ │ ├── writecff.h │ │ ├── writeenc.c │ │ ├── writefont.c │ │ ├── writet1.c │ │ ├── writet3.c │ │ ├── writettf.c │ │ ├── writettf.h │ │ ├── writetype0.c │ │ └── writetype2.c │ ├── image │ │ ├── epdf.h │ │ ├── image.h │ │ ├── pdftoepdf.c │ │ ├── pdftoepdf.h │ │ ├── writeimg.c │ │ ├── writeimg.h │ │ ├── writejbig2.c │ │ ├── writejbig2.h │ │ ├── writejp2.c │ │ ├── writejp2.h │ │ ├── writejpg.c │ │ ├── writejpg.h │ │ ├── writepng.c │ │ └── writepng.h │ ├── lang │ │ ├── hnjalloc.c │ │ ├── hnjalloc.h │ │ ├── hyphen.c │ │ ├── hyphen.h │ │ ├── texlang.c │ │ └── texlang.h │ ├── lua │ │ ├── lcallbacklib.c │ │ ├── lfontlib.c │ │ ├── limglib.c │ │ ├── liolibext.c │ │ ├── lkpselib.c │ │ ├── llanglib.c │ │ ├── llualib.c │ │ ├── lnewtokenlib.c │ │ ├── lnodelib.c │ │ ├── loslibext.c │ │ ├── lpdfelib.c │ │ ├── lpdflib.c │ │ ├── lpdfscannerlib.c │ │ ├── lstatslib.c │ │ ├── lstrlibext.c │ │ ├── ltexiolib.c │ │ ├── ltexlib.c │ │ ├── luainit.c │ │ ├── luanode.c │ │ ├── luastuff.c │ │ ├── luatex-api.h │ │ ├── luatex-core.c │ │ ├── luatex-core.lua │ │ ├── luatoken.c │ │ ├── mplibstuff.c │ │ └── texluac.c │ ├── luafontloader │ │ ├── ChangeLog │ │ ├── ff-config.in │ │ ├── fontforge │ │ │ ├── AUTHORS │ │ │ ├── INSTALL │ │ │ ├── LICENSE │ │ │ ├── VERSION │ │ │ ├── fontforge │ │ │ │ ├── PfEd.h │ │ │ │ ├── autohint.c │ │ │ │ ├── baseviews.h │ │ │ │ ├── clipnoui.c │ │ │ │ ├── configure-pfaedit.h │ │ │ │ ├── cvundoes.c │ │ │ │ ├── dumppfa.c │ │ │ │ ├── edgelist.h │ │ │ │ ├── edgelist2.h │ │ │ │ ├── encoding.c │ │ │ │ ├── encoding.h │ │ │ │ ├── featurefile.c │ │ │ │ ├── fontforgevw.h │ │ │ │ ├── fontviewbase.c │ │ │ │ ├── fvcomposit.c │ │ │ │ ├── fvfonts.c │ │ │ │ ├── lookups.c │ │ │ │ ├── lookups.h │ │ │ │ ├── macbinary.c │ │ │ │ ├── macenc.c │ │ │ │ ├── mathconstants.c │ │ │ │ ├── memory.c │ │ │ │ ├── mm.c │ │ │ │ ├── mm.h │ │ │ │ ├── namelist.c │ │ │ │ ├── noprefs.c │ │ │ │ ├── nouiutil.c │ │ │ │ ├── parsepfa.c │ │ │ │ ├── parsettf.c │ │ │ │ ├── parsettfatt.c │ │ │ │ ├── pfaedit.h │ │ │ │ ├── plugins.h │ │ │ │ ├── psfont.h │ │ │ │ ├── psread.c │ │ │ │ ├── pua.c │ │ │ │ ├── python.c │ │ │ │ ├── scripting.h │ │ │ │ ├── sd.h │ │ │ │ ├── sfd1.c │ │ │ │ ├── sfd1.h │ │ │ │ ├── splinechar.c │ │ │ │ ├── splinefill.c │ │ │ │ ├── splinefont.c │ │ │ │ ├── splinefont.h │ │ │ │ ├── splineorder2.c │ │ │ │ ├── splineoverlap.c │ │ │ │ ├── splinerefigure.c │ │ │ │ ├── splinesave.c │ │ │ │ ├── splinesaveafm.c │ │ │ │ ├── splinestroke.c │ │ │ │ ├── splineutil.c │ │ │ │ ├── splineutil2.c │ │ │ │ ├── start.c │ │ │ │ ├── stemdb.c │ │ │ │ ├── stemdb.h │ │ │ │ ├── tottf.c │ │ │ │ ├── tottfgpos.c │ │ │ │ ├── ttf.h │ │ │ │ ├── ttfspecial.c │ │ │ │ ├── uiinterface.h │ │ │ │ └── unicoderange.h │ │ │ ├── gutils │ │ │ │ └── fsys.c │ │ │ ├── inc │ │ │ │ ├── basics.h │ │ │ │ ├── gfile.h │ │ │ │ ├── gimage.h │ │ │ │ └── intl.h │ │ │ └── unilib │ │ │ │ ├── alphabet.c │ │ │ │ ├── char.c │ │ │ │ ├── chardata.h │ │ │ │ ├── charset.h │ │ │ │ ├── cjk.c │ │ │ │ ├── gwwiconv.c │ │ │ │ ├── gwwiconv.h │ │ │ │ ├── src │ │ │ │ └── makeutype.c │ │ │ │ ├── ucharmap.c │ │ │ │ ├── unibasics.h │ │ │ │ ├── usprintf.c │ │ │ │ ├── ustring.c │ │ │ │ ├── ustring.h │ │ │ │ ├── utype.c │ │ │ │ └── utype.h │ │ └── src │ │ │ ├── ffdummies.c │ │ │ ├── ffdummies.h │ │ │ └── luafflib.c │ ├── luaharfbuzz │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README-win.md │ │ ├── README.md │ │ ├── THANKS │ │ ├── config.ld │ │ ├── docs │ │ │ ├── examples │ │ │ │ ├── core_types.lua.html │ │ │ │ ├── custom_callbacks.lua.html │ │ │ │ ├── harfbuzz_setup.lua.html │ │ │ │ ├── ot_font_loader.lua.html │ │ │ │ └── package_path_searcher.lua.html │ │ │ ├── index.html │ │ │ └── ldoc.css │ │ ├── examples │ │ │ └── core_types.lua │ │ ├── fixtures │ │ │ ├── AppleGothic_korean_issue_22.json │ │ │ ├── amiri-regular_123.json │ │ │ ├── amiri-regular_123_numr.json │ │ │ └── notonastaliq_U06CC_U06C1.json │ │ ├── fonts │ │ │ ├── Rajdhani-Regular.ttf │ │ │ ├── amiri-regular.ttf │ │ │ ├── amiriquran-colored.ttf │ │ │ ├── notocoloremoji-subset.ttf │ │ │ └── notonastaliq.ttf │ │ ├── luaharfbuzz-1.0.0-1.rockspec │ │ ├── luaharfbuzz-scm-1.rockspec │ │ ├── scripts │ │ │ ├── generate_harfbuzz_api_list.sh │ │ │ └── generate_hb_shape_json.sh │ │ ├── spec │ │ │ ├── buffer_spec.lua │ │ │ ├── harfbuzz_spec.lua │ │ │ └── shaping_spec.lua │ │ ├── src │ │ │ ├── harfbuzz.lua │ │ │ ├── harfbuzz.luadoc │ │ │ └── luaharfbuzz │ │ │ │ ├── blob.c │ │ │ │ ├── buffer.c │ │ │ │ ├── class_utils.c │ │ │ │ ├── direction.c │ │ │ │ ├── face.c │ │ │ │ ├── feature.c │ │ │ │ ├── font.c │ │ │ │ ├── language.c │ │ │ │ ├── luaharfbuzz.c │ │ │ │ ├── luaharfbuzz.h │ │ │ │ ├── ot.c │ │ │ │ ├── script.c │ │ │ │ ├── tag.c │ │ │ │ └── unicode.c │ │ └── status │ │ │ ├── done.txt │ │ │ └── full_api.txt │ ├── luaimage.test │ ├── luatex-common.h │ ├── luatex.c │ ├── luatex.h │ ├── luatex.test │ ├── luatexcallbackids.h │ ├── pdf │ │ ├── pdfaction.c │ │ ├── pdfaction.h │ │ ├── pdfannot.c │ │ ├── pdfannot.h │ │ ├── pdfcolorstack.c │ │ ├── pdfcolorstack.h │ │ ├── pdfdest.c │ │ ├── pdfdest.h │ │ ├── pdffont.c │ │ ├── pdffont.h │ │ ├── pdfgen.c │ │ ├── pdfgen.h │ │ ├── pdfglyph.c │ │ ├── pdfglyph.h │ │ ├── pdfimage.c │ │ ├── pdfimage.h │ │ ├── pdflink.c │ │ ├── pdflink.h │ │ ├── pdflistout.c │ │ ├── pdflistout.h │ │ ├── pdfliteral.c │ │ ├── pdfliteral.h │ │ ├── pdfobj.c │ │ ├── pdfobj.h │ │ ├── pdfoutline.c │ │ ├── pdfoutline.h │ │ ├── pdfpage.c │ │ ├── pdfpage.h │ │ ├── pdfpagetree.c │ │ ├── pdfpagetree.h │ │ ├── pdfrule.c │ │ ├── pdfrule.h │ │ ├── pdfsaverestore.c │ │ ├── pdfsaverestore.h │ │ ├── pdfsetmatrix.c │ │ ├── pdfsetmatrix.h │ │ ├── pdfshipout.c │ │ ├── pdfshipout.h │ │ ├── pdftables.c │ │ ├── pdftables.h │ │ ├── pdfthread.c │ │ ├── pdfthread.h │ │ ├── pdftypes.h │ │ ├── pdfxform.c │ │ └── pdfxform.h │ ├── ptexlib.h │ ├── tests │ │ └── luaimage.tex │ ├── tex │ │ ├── align.c │ │ ├── align.h │ │ ├── arithmetic.c │ │ ├── arithmetic.h │ │ ├── backend.c │ │ ├── backend.h │ │ ├── buildpage.c │ │ ├── buildpage.h │ │ ├── commands.c │ │ ├── commands.h │ │ ├── conditional.c │ │ ├── conditional.h │ │ ├── directions.c │ │ ├── directions.h │ │ ├── dumpdata.c │ │ ├── dumpdata.h │ │ ├── equivalents.c │ │ ├── equivalents.h │ │ ├── errors.c │ │ ├── errors.h │ │ ├── expand.c │ │ ├── expand.h │ │ ├── extensions.c │ │ ├── extensions.h │ │ ├── filename.c │ │ ├── filename.h │ │ ├── inputstack.c │ │ ├── inputstack.h │ │ ├── linebreak.c │ │ ├── linebreak.h │ │ ├── mainbody.c │ │ ├── mainbody.h │ │ ├── maincontrol.c │ │ ├── maincontrol.h │ │ ├── mathcodes.c │ │ ├── mathcodes.h │ │ ├── memoryword.c │ │ ├── memoryword.h │ │ ├── mlist.c │ │ ├── mlist.h │ │ ├── nesting.c │ │ ├── nesting.h │ │ ├── packaging.c │ │ ├── packaging.h │ │ ├── postlinebreak.c │ │ ├── postlinebreak.h │ │ ├── primitive.c │ │ ├── primitive.h │ │ ├── printing.c │ │ ├── printing.h │ │ ├── scanning.c │ │ ├── scanning.h │ │ ├── stringpool.c │ │ ├── stringpool.h │ │ ├── texdeffont.c │ │ ├── texdeffont.h │ │ ├── texfileio.c │ │ ├── texfileio.h │ │ ├── texmath.c │ │ ├── texmath.h │ │ ├── texnodes.c │ │ ├── texnodes.h │ │ ├── textcodes.c │ │ ├── textcodes.h │ │ ├── textoken.c │ │ └── textoken.h │ └── utils │ │ ├── avl.c │ │ ├── avl.h │ │ ├── avlstuff.c │ │ ├── avlstuff.h │ │ ├── managed-sa.c │ │ ├── managed-sa.h │ │ ├── unistring.c │ │ ├── unistring.h │ │ ├── utils.c │ │ └── utils.h │ ├── help.h │ ├── lib │ ├── ChangeLog │ ├── Makefile.am │ ├── Makefile.in │ ├── README │ ├── alloca.c │ ├── basechsuffix.c │ ├── chartostring.c │ ├── coredump.c │ ├── eofeoln.c │ ├── fprintreal.c │ ├── input2int.c │ ├── inputint.c │ ├── lib.h │ ├── main.c │ ├── mfmpi386.asm │ ├── mfmpw32.c │ ├── openclose.c │ ├── printversion.c │ ├── setupvar.c │ ├── texmfmp.c │ ├── uexit.c │ ├── usage.c │ ├── version.c │ └── zround.c │ ├── libmd5 │ ├── am │ │ └── md5.am │ ├── md5.c │ ├── md5.h │ ├── md5.test │ └── md5main.c │ ├── luatexdir │ ├── ChangeLog │ ├── NEWS │ ├── am │ │ ├── libluatex.am │ │ ├── libunilib.am │ │ ├── luaffi.am │ │ ├── luafontforge.am │ │ ├── luamisc.am │ │ ├── luapplib.am │ │ ├── luasocket.am │ │ └── luatex.am │ ├── dvi │ │ ├── dvigen.c │ │ └── dvigen.h │ ├── font │ │ ├── dofont.c │ │ ├── luafont.c │ │ ├── luatexfont.h │ │ ├── mapfile.c │ │ ├── mapfile.h │ │ ├── pdfglyphtounicode-luatex.c │ │ ├── pdfglyphtounicode-pdftex.c │ │ ├── pdfglyphtounicode-readme.txt │ │ ├── pkin.c │ │ ├── sfnt.c │ │ ├── sfnt.h │ │ ├── subfont.c │ │ ├── subfont.txt │ │ ├── texfont.c │ │ ├── texfont.h │ │ ├── tfmofm.c │ │ ├── tounicode.c │ │ ├── tt_glyf.c │ │ ├── tt_glyf.h │ │ ├── tt_table.c │ │ ├── tt_table.h │ │ ├── vfovf.c │ │ ├── vfpacket.c │ │ ├── writecff.c │ │ ├── writecff.h │ │ ├── writeenc.c │ │ ├── writefont.c │ │ ├── writet1.c │ │ ├── writet3.c │ │ ├── writettf.c │ │ ├── writettf.h │ │ ├── writetype0.c │ │ └── writetype2.c │ ├── image │ │ ├── epdf.h │ │ ├── image.h │ │ ├── pdftoepdf.c │ │ ├── pdftoepdf.h │ │ ├── writeimg.c │ │ ├── writeimg.h │ │ ├── writejbig2.c │ │ ├── writejbig2.h │ │ ├── writejp2.c │ │ ├── writejp2.h │ │ ├── writejpg.c │ │ ├── writejpg.h │ │ ├── writepng.c │ │ └── writepng.h │ ├── lang │ │ ├── hnjalloc.c │ │ ├── hnjalloc.h │ │ ├── hyphen.c │ │ ├── hyphen.h │ │ ├── texlang.c │ │ └── texlang.h │ ├── lua │ │ ├── helpers.c │ │ ├── lauxlib_bridge.h │ │ ├── lcallbacklib.c │ │ ├── lepdflib.cc │ │ ├── lepdflib.cc.orig │ │ ├── lfontlib.c │ │ ├── limglib.c │ │ ├── liolibext.c │ │ ├── lkpselib.c │ │ ├── llanglib.c │ │ ├── llualib.c │ │ ├── lnewtokenlib.c │ │ ├── lnodelib.c │ │ ├── loslibext.c │ │ ├── lpdfelib.c │ │ ├── lpdflib.c │ │ ├── lpdfscannerlib.c │ │ ├── lstatslib.c │ │ ├── lstrlibext.c │ │ ├── ltexiolib.c │ │ ├── ltexlib.c │ │ ├── luainit.c │ │ ├── luanode.c │ │ ├── luastuff.c │ │ ├── luatex-api.h │ │ ├── luatex-core.c │ │ ├── luatex-core.lua │ │ ├── luatoken.c │ │ ├── mplibstuff.c │ │ ├── texluac.c │ │ └── texluajitc.c │ ├── luaffi │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── Makefile.orig │ │ ├── PATENTS │ │ ├── README │ │ ├── README.md │ │ ├── call.c │ │ ├── call_arm.dasc │ │ ├── call_arm.h │ │ ├── call_x64.h │ │ ├── call_x64win.h │ │ ├── call_x86.dasc │ │ ├── call_x86.h │ │ ├── ctype.c │ │ ├── dynasm │ │ │ ├── dasm_arm.h │ │ │ ├── dasm_arm.lua │ │ │ ├── dasm_ppc.h │ │ │ ├── dasm_ppc.lua │ │ │ ├── dasm_proto.h │ │ │ ├── dasm_x64.lua │ │ │ ├── dasm_x86.h │ │ │ ├── dasm_x86.lua │ │ │ └── dynasm.lua │ │ ├── ffi.c │ │ ├── ffi.c.orig │ │ ├── ffi.h │ │ ├── ffi.h.orig │ │ ├── generate_call_h.bat │ │ ├── luaffi-scm-1.rockspec │ │ ├── msvc │ │ │ ├── inttypes.h │ │ │ ├── stdbool.h │ │ │ └── stdint.h │ │ ├── msvcbuild.bat │ │ ├── parser.c │ │ ├── test.c │ │ └── test.lua │ ├── luafilesystem │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── Makefile.win │ │ ├── README.md │ │ ├── config │ │ ├── config.win │ │ ├── doc │ │ │ └── us │ │ │ │ ├── doc.css │ │ │ │ ├── examples.html │ │ │ │ ├── index.html │ │ │ │ ├── license.html │ │ │ │ ├── luafilesystem.png │ │ │ │ └── manual.html │ │ ├── src │ │ │ ├── lfs.c │ │ │ ├── lfs.def │ │ │ └── lfs.h │ │ ├── tests │ │ │ └── test.lua │ │ └── vc6 │ │ │ ├── lfs.def │ │ │ ├── luafilesystem.dsw │ │ │ └── luafilesystem_dll.dsp │ ├── luafontloader │ │ ├── ChangeLog │ │ ├── ff-config.in │ │ ├── fontforge │ │ │ ├── AUTHORS │ │ │ ├── INSTALL │ │ │ ├── LICENSE │ │ │ ├── VERSION │ │ │ ├── fontforge │ │ │ │ ├── PfEd.h │ │ │ │ ├── autohint.c │ │ │ │ ├── baseviews.h │ │ │ │ ├── clipnoui.c │ │ │ │ ├── configure-pfaedit.h │ │ │ │ ├── cvundoes.c │ │ │ │ ├── dumppfa.c │ │ │ │ ├── edgelist.h │ │ │ │ ├── edgelist2.h │ │ │ │ ├── encoding.c │ │ │ │ ├── encoding.h │ │ │ │ ├── featurefile.c │ │ │ │ ├── fontforgevw.h │ │ │ │ ├── fontviewbase.c │ │ │ │ ├── fvcomposit.c │ │ │ │ ├── fvfonts.c │ │ │ │ ├── lookups.c │ │ │ │ ├── lookups.h │ │ │ │ ├── macbinary.c │ │ │ │ ├── macenc.c │ │ │ │ ├── mathconstants.c │ │ │ │ ├── memory.c │ │ │ │ ├── mm.c │ │ │ │ ├── mm.h │ │ │ │ ├── namelist.c │ │ │ │ ├── noprefs.c │ │ │ │ ├── nouiutil.c │ │ │ │ ├── parsepfa.c │ │ │ │ ├── parsettf.c │ │ │ │ ├── parsettfatt.c │ │ │ │ ├── pfaedit.h │ │ │ │ ├── plugins.h │ │ │ │ ├── psfont.h │ │ │ │ ├── psread.c │ │ │ │ ├── pua.c │ │ │ │ ├── python.c │ │ │ │ ├── scripting.h │ │ │ │ ├── sd.h │ │ │ │ ├── sfd1.c │ │ │ │ ├── sfd1.h │ │ │ │ ├── splinechar.c │ │ │ │ ├── splinefill.c │ │ │ │ ├── splinefont.c │ │ │ │ ├── splinefont.h │ │ │ │ ├── splineorder2.c │ │ │ │ ├── splineoverlap.c │ │ │ │ ├── splinerefigure.c │ │ │ │ ├── splinesave.c │ │ │ │ ├── splinesaveafm.c │ │ │ │ ├── splinestroke.c │ │ │ │ ├── splineutil.c │ │ │ │ ├── splineutil2.c │ │ │ │ ├── start.c │ │ │ │ ├── stemdb.c │ │ │ │ ├── stemdb.h │ │ │ │ ├── tottf.c │ │ │ │ ├── tottfgpos.c │ │ │ │ ├── ttf.h │ │ │ │ ├── ttfspecial.c │ │ │ │ ├── uiinterface.h │ │ │ │ └── unicoderange.h │ │ │ ├── gutils │ │ │ │ └── fsys.c │ │ │ └── inc │ │ │ │ ├── basics.h │ │ │ │ ├── gfile.h │ │ │ │ ├── gimage.h │ │ │ │ └── intl.h │ │ └── src │ │ │ ├── ffdummies.c │ │ │ ├── ffdummies.h │ │ │ └── luafflib.c │ ├── luaimage.test │ ├── luajitimage.test │ ├── luajittex.test │ ├── luamd5 │ │ ├── luamd5.h │ │ ├── makefile │ │ ├── md5.c │ │ ├── md5.html │ │ ├── md5.lua │ │ ├── md5lib.c │ │ └── md5tests.lua │ ├── luapeg │ │ ├── lpeg.c │ │ └── lpeg.h │ ├── luapplib │ │ ├── Makefile.orig │ │ ├── html │ │ │ ├── .buildinfo │ │ │ ├── _sources │ │ │ │ ├── ppapi.rst.txt │ │ │ │ ├── ppcode.rst.txt │ │ │ │ └── pplib.rst.txt │ │ │ ├── _static │ │ │ │ ├── ajax-loader.gif │ │ │ │ ├── background_b01.png │ │ │ │ ├── basic.css │ │ │ │ ├── bizstyle.css │ │ │ │ ├── bizstyle.js │ │ │ │ ├── comment-bright.png │ │ │ │ ├── comment-close.png │ │ │ │ ├── comment.png │ │ │ │ ├── css3-mediaqueries.js │ │ │ │ ├── css3-mediaqueries_src.js │ │ │ │ ├── doctools.js │ │ │ │ ├── documentation_options.js │ │ │ │ ├── down-pressed.png │ │ │ │ ├── down.png │ │ │ │ ├── file.png │ │ │ │ ├── jquery-3.2.1.js │ │ │ │ ├── jquery.js │ │ │ │ ├── minus.png │ │ │ │ ├── plus.png │ │ │ │ ├── pygments.css │ │ │ │ ├── searchtools.js │ │ │ │ ├── underscore-1.3.1.js │ │ │ │ ├── underscore.js │ │ │ │ ├── up-pressed.png │ │ │ │ ├── up.png │ │ │ │ └── websupport.js │ │ │ ├── genindex.html │ │ │ ├── objects.inv │ │ │ ├── ppapi.html │ │ │ ├── ppcode.html │ │ │ ├── pplib.html │ │ │ ├── search.html │ │ │ └── searchindex.js │ │ ├── ppapi.h │ │ ├── pparray.c │ │ ├── pparray.h │ │ ├── ppconf.h │ │ ├── ppcrypt.c │ │ ├── ppcrypt.c.orig │ │ ├── ppcrypt.h │ │ ├── ppdict.c │ │ ├── ppdict.h │ │ ├── ppfilter.h │ │ ├── ppheap.c │ │ ├── ppheap.h │ │ ├── pplib.h │ │ ├── ppload.c │ │ ├── ppload.h │ │ ├── ppstream.c │ │ ├── ppstream.h │ │ ├── pptest1.c │ │ ├── pptest2.c │ │ ├── pptest3.c │ │ ├── ppxref.c │ │ ├── ppxref.h │ │ └── util │ │ │ ├── utilarm.h │ │ │ ├── utilbasexx.c │ │ │ ├── utilbasexx.h │ │ │ ├── utilcrypt.c │ │ │ ├── utilcrypt.h │ │ │ ├── utilcryptdef.h │ │ │ ├── utildecl.h │ │ │ ├── utilflate.c │ │ │ ├── utilflate.h │ │ │ ├── utilfpred.c │ │ │ ├── utilfpred.h │ │ │ ├── utiliof.c │ │ │ ├── utiliof.h │ │ │ ├── utillog.c │ │ │ ├── utillog.h │ │ │ ├── utillzw.c │ │ │ ├── utillzw.h │ │ │ ├── utilmd5.c │ │ │ ├── utilmd5.c.orig │ │ │ ├── utilmd5.h │ │ │ ├── utilmd5.h.orig │ │ │ ├── utilmem.c │ │ │ ├── utilmem.h │ │ │ ├── utilnumber.c │ │ │ ├── utilnumber.h │ │ │ ├── utilplat.h │ │ │ ├── utilsha.c │ │ │ └── utilsha.h │ ├── luasocket │ │ ├── LICENSE │ │ ├── Lua51.props │ │ ├── Lua52.props │ │ ├── NEW │ │ ├── README │ │ ├── doc │ │ │ ├── dns.html │ │ │ ├── ftp.html │ │ │ ├── http.html │ │ │ ├── index.html │ │ │ ├── installation.html │ │ │ ├── introduction.html │ │ │ ├── ltn12.html │ │ │ ├── lua05.ppt │ │ │ ├── luasocket.png │ │ │ ├── mime.html │ │ │ ├── reference.css │ │ │ ├── reference.html │ │ │ ├── smtp.html │ │ │ ├── socket.html │ │ │ ├── tcp.html │ │ │ ├── udp.html │ │ │ └── url.html │ │ ├── etc │ │ │ ├── README │ │ │ ├── b64.lua │ │ │ ├── check-links.lua │ │ │ ├── check-memory.lua │ │ │ ├── cookie.lua │ │ │ ├── dict.lua │ │ │ ├── dispatch.lua │ │ │ ├── eol.lua │ │ │ ├── forward.lua │ │ │ ├── get.lua │ │ │ ├── links │ │ │ ├── lp.lua │ │ │ ├── qp.lua │ │ │ └── tftp.lua │ │ ├── luasocket.sln │ │ ├── makefile │ │ ├── mime.vcxproj │ │ ├── mime.vcxproj.filters │ │ ├── samples │ │ │ ├── README │ │ │ ├── cddb.lua │ │ │ ├── daytimeclnt.lua │ │ │ ├── echoclnt.lua │ │ │ ├── echosrvr.lua │ │ │ ├── listener.lua │ │ │ ├── lpr.lua │ │ │ ├── mclisten.lua │ │ │ ├── mcsend.lua │ │ │ ├── talker.lua │ │ │ └── tinyirc.lua │ │ ├── socket.vcxproj │ │ ├── socket.vcxproj.filters │ │ ├── src │ │ │ ├── auxiliar.c │ │ │ ├── auxiliar.h │ │ │ ├── buffer.c │ │ │ ├── buffer.h │ │ │ ├── compat.c │ │ │ ├── compat.c.orig │ │ │ ├── compat.h │ │ │ ├── compat.h.orig │ │ │ ├── except.c │ │ │ ├── except.h │ │ │ ├── ftp.lua │ │ │ ├── ftp.lua_lua.c │ │ │ ├── ftp_lua.c │ │ │ ├── headers.lua │ │ │ ├── headers.lua_lua.c │ │ │ ├── headers_lua.c │ │ │ ├── http.lua │ │ │ ├── http.lua_lua.c │ │ │ ├── http_lua.c │ │ │ ├── inet.c │ │ │ ├── inet.h │ │ │ ├── io.c │ │ │ ├── io.h │ │ │ ├── ltn12.lua │ │ │ ├── ltn12.lua_lua.c │ │ │ ├── ltn12_lua.c │ │ │ ├── lua_preload.c │ │ │ ├── luasocket.c │ │ │ ├── luasocket.c.orig │ │ │ ├── luasocket.h │ │ │ ├── makefile │ │ │ ├── mbox.lua │ │ │ ├── mbox.lua_lua.c │ │ │ ├── mbox_lua.c │ │ │ ├── mime.c │ │ │ ├── mime.h │ │ │ ├── mime.lua │ │ │ ├── mime.lua_lua.c │ │ │ ├── mime_lua.c │ │ │ ├── options.c │ │ │ ├── options.h │ │ │ ├── pierror.h │ │ │ ├── select.c │ │ │ ├── select.h │ │ │ ├── serial.c │ │ │ ├── smtp.lua │ │ │ ├── smtp.lua_lua.c │ │ │ ├── smtp_lua.c │ │ │ ├── socket.c │ │ │ ├── socket.h │ │ │ ├── socket.lua │ │ │ ├── socket_lua.c │ │ │ ├── socket_lua.c.module │ │ │ ├── tcp.c │ │ │ ├── tcp.h │ │ │ ├── timeout.c │ │ │ ├── timeout.h │ │ │ ├── tp.lua │ │ │ ├── tp.lua_lua.c │ │ │ ├── tp_lua.c │ │ │ ├── udp.c │ │ │ ├── udp.h │ │ │ ├── unix.c │ │ │ ├── unix.h │ │ │ ├── unixdgram.c │ │ │ ├── unixdgram.h │ │ │ ├── unixstream.c │ │ │ ├── unixstream.h │ │ │ ├── url.lua │ │ │ ├── url.lua_lua.c │ │ │ ├── url_lua.c │ │ │ ├── usocket.c │ │ │ ├── usocket.h │ │ │ ├── wsocket.c │ │ │ └── wsocket.h │ │ └── test │ │ │ ├── README │ │ │ ├── auth │ │ │ ├── .htaccess │ │ │ ├── .htpasswd │ │ │ └── index.html │ │ │ ├── cgi │ │ │ ├── cat │ │ │ ├── cat-index-html │ │ │ ├── env │ │ │ ├── query-string │ │ │ ├── redirect-loop │ │ │ └── request-uri │ │ │ ├── dicttest.lua │ │ │ ├── excepttest.lua │ │ │ ├── find-connect-limit │ │ │ ├── ftptest.lua │ │ │ ├── hello.lua │ │ │ ├── httptest.lua │ │ │ ├── index.html │ │ │ ├── ltn12test.lua │ │ │ ├── luasocket.png │ │ │ ├── mimetest.lua │ │ │ ├── smtptest.lua │ │ │ ├── stufftest.lua │ │ │ ├── tcp-getoptions │ │ │ ├── test_bind.lua │ │ │ ├── test_getaddrinfo.lua │ │ │ ├── test_socket_error.lua │ │ │ ├── testclnt.lua │ │ │ ├── testmesg.lua │ │ │ ├── testsrvr.lua │ │ │ ├── testsupport.lua │ │ │ ├── tftptest.lua │ │ │ ├── udp-zero-length-send │ │ │ ├── udp-zero-length-send-recv │ │ │ ├── udpconnectclnt.lua │ │ │ ├── udpconnectsrvr.lua │ │ │ ├── unixdgramclnt.lua │ │ │ ├── unixdgramsrvr.lua │ │ │ ├── unixstreamclnt.lua │ │ │ ├── unixstreamsrvr.lua │ │ │ ├── upload.html │ │ │ ├── urltest.lua │ │ │ ├── utestclnt.lua │ │ │ └── utestsrvr.lua │ ├── luatex-common.h │ ├── luatex.c │ ├── luatex.h │ ├── luatex.test │ ├── luatex_svnversion.h │ ├── luatexcallbackids.h │ ├── luazip │ │ ├── Makefile │ │ ├── README │ │ ├── config │ │ ├── doc │ │ │ └── us │ │ │ │ ├── examples.html │ │ │ │ ├── index.html │ │ │ │ ├── license.html │ │ │ │ ├── luazip-128.png │ │ │ │ └── manual.html │ │ ├── src │ │ │ ├── luazip.c │ │ │ └── luazip.h │ │ ├── tests │ │ │ ├── a │ │ │ │ └── b │ │ │ │ │ └── c.zip │ │ │ ├── a2 │ │ │ │ ├── b2.ext2 │ │ │ │ └── b2.zip │ │ │ ├── a3.ext3 │ │ │ ├── a3.zip │ │ │ ├── luazip.zip │ │ │ └── test_zip.lua │ │ ├── vc6 │ │ │ ├── README │ │ │ ├── luazip.dsw │ │ │ ├── luazip.rc │ │ │ ├── luazip_dll.dsp │ │ │ ├── luazip_static.dsp │ │ │ └── resource.h │ │ └── vc7 │ │ │ ├── README │ │ │ ├── luazip.rc │ │ │ ├── luazip.sln │ │ │ ├── luazip_dll.vcproj │ │ │ ├── luazip_static.vcproj │ │ │ └── resource.h │ ├── luazlib │ │ ├── Makefile │ │ ├── README │ │ ├── gzip.lua │ │ ├── lgzip.c │ │ ├── lzlib.c │ │ ├── test_gzip.lua │ │ ├── test_zlib.lua │ │ └── zlib.lua │ ├── pdf │ │ ├── pdfaction.c │ │ ├── pdfaction.h │ │ ├── pdfannot.c │ │ ├── pdfannot.h │ │ ├── pdfcolorstack.c │ │ ├── pdfcolorstack.h │ │ ├── pdfdest.c │ │ ├── pdfdest.h │ │ ├── pdffont.c │ │ ├── pdffont.h │ │ ├── pdfgen.c │ │ ├── pdfgen.h │ │ ├── pdfglyph.c │ │ ├── pdfglyph.h │ │ ├── pdfimage.c │ │ ├── pdfimage.h │ │ ├── pdflink.c │ │ ├── pdflink.h │ │ ├── pdflistout.c │ │ ├── pdflistout.h │ │ ├── pdfliteral.c │ │ ├── pdfliteral.h │ │ ├── pdfobj.c │ │ ├── pdfobj.h │ │ ├── pdfoutline.c │ │ ├── pdfoutline.h │ │ ├── pdfpage.c │ │ ├── pdfpage.h │ │ ├── pdfpagetree.c │ │ ├── pdfpagetree.h │ │ ├── pdfrule.c │ │ ├── pdfrule.h │ │ ├── pdfsaverestore.c │ │ ├── pdfsaverestore.h │ │ ├── pdfsetmatrix.c │ │ ├── pdfsetmatrix.h │ │ ├── pdfshipout.c │ │ ├── pdfshipout.h │ │ ├── pdftables.c │ │ ├── pdftables.h │ │ ├── pdfthread.c │ │ ├── pdfthread.h │ │ ├── pdftypes.h │ │ ├── pdfxform.c │ │ └── pdfxform.h │ ├── ptexlib.h │ ├── slnunicode │ │ ├── slnudata.c │ │ ├── slnunico.c │ │ └── unitest │ ├── tests │ │ └── luaimage.tex │ ├── tex │ │ ├── align.c │ │ ├── align.h │ │ ├── arithmetic.c │ │ ├── arithmetic.h │ │ ├── backend.c │ │ ├── backend.h │ │ ├── buildpage.c │ │ ├── buildpage.h │ │ ├── commands.c │ │ ├── commands.h │ │ ├── conditional.c │ │ ├── conditional.h │ │ ├── directions.c │ │ ├── directions.h │ │ ├── dumpdata.c │ │ ├── dumpdata.h │ │ ├── equivalents.c │ │ ├── equivalents.h │ │ ├── errors.c │ │ ├── errors.h │ │ ├── expand.c │ │ ├── expand.h │ │ ├── extensions.c │ │ ├── extensions.h │ │ ├── filename.c │ │ ├── filename.h │ │ ├── inputstack.c │ │ ├── inputstack.h │ │ ├── linebreak.c │ │ ├── linebreak.h │ │ ├── mainbody.c │ │ ├── mainbody.h │ │ ├── maincontrol.c │ │ ├── maincontrol.h │ │ ├── mathcodes.c │ │ ├── mathcodes.h │ │ ├── memoryword.c │ │ ├── memoryword.h │ │ ├── mlist.c │ │ ├── mlist.h │ │ ├── nesting.c │ │ ├── nesting.h │ │ ├── packaging.c │ │ ├── packaging.h │ │ ├── postlinebreak.c │ │ ├── postlinebreak.h │ │ ├── primitive.c │ │ ├── primitive.h │ │ ├── printing.c │ │ ├── printing.h │ │ ├── scanning.c │ │ ├── scanning.h │ │ ├── stringpool.c │ │ ├── stringpool.h │ │ ├── texdeffont.c │ │ ├── texdeffont.h │ │ ├── texfileio.c │ │ ├── texfileio.h │ │ ├── texmath.c │ │ ├── texmath.h │ │ ├── texnodes.c │ │ ├── texnodes.h │ │ ├── textcodes.c │ │ ├── textcodes.h │ │ ├── textoken.c │ │ └── textoken.h │ ├── unilib │ │ ├── ArabicForms.c │ │ ├── alphabet.c │ │ ├── char.c │ │ ├── chardata.h │ │ ├── charset.h │ │ ├── cjk.c │ │ ├── combiners.h │ │ ├── gwwiconv.c │ │ ├── gwwiconv.h │ │ ├── src │ │ │ └── makeutype.c │ │ ├── ucharmap.c │ │ ├── unialt.c │ │ ├── unibasics.h │ │ ├── usprintf.c │ │ ├── ustring.c │ │ ├── ustring.h │ │ ├── utype.c │ │ └── utype.h │ └── utils │ │ ├── avl.c │ │ ├── avl.h │ │ ├── avlstuff.c │ │ ├── avlstuff.h │ │ ├── managed-sa.c │ │ ├── managed-sa.h │ │ ├── unistring.c │ │ ├── unistring.h │ │ ├── utils.c │ │ └── utils.h │ ├── m4 │ └── web2c-disable.m4 │ ├── man │ ├── ChangeLog │ ├── Makefile.am │ ├── Makefile.in │ ├── README │ ├── aleph.man │ ├── amstex.man │ ├── bibtex.man │ ├── ctie.man │ ├── ctwill.man │ ├── cweb.man │ ├── dvicopy.man │ ├── dvitomp.man │ ├── dvitype.man │ ├── etex.man │ ├── gftodvi.man │ ├── gftopk.man │ ├── gftype.man │ ├── latex.man │ ├── luatex.man │ ├── mf.man │ ├── mft.man │ ├── mpost.man │ ├── ofm2opl.man │ ├── opl2ofm.man │ ├── ovf2ovp.man │ ├── ovp2ovf.man │ ├── patgen.man │ ├── pdfetex.man │ ├── pdftex.man │ ├── pdftosrc.man │ ├── pktogf.man │ ├── pktype.man │ ├── pltotf.man │ ├── pooltype.man │ ├── spell.add │ ├── tangle.man │ ├── tex.man │ ├── tftopl.man │ ├── tie.man │ ├── ttf2afm.man │ ├── vftovp.man │ ├── vptovf.man │ ├── weave.man │ └── xetex.man │ ├── mfluadir │ ├── am │ │ └── mflua.am │ └── mflua_version.h │ ├── mfluajitdir │ └── am │ │ └── mfluajit.am │ ├── mft.test │ ├── mplibdir │ ├── ChangeLog │ ├── am │ │ ├── libmplib.am │ │ ├── libmputil.am │ │ └── mplib.am │ ├── avl.c │ ├── avl.h │ ├── decContext.c │ ├── decContext.h │ ├── decNumber.c │ ├── decNumber.h │ ├── decNumberLocal.h │ ├── dvitomp.test │ ├── lmplib.c │ ├── mp.w │ ├── mpmath.w │ ├── mpmathbinary.w │ ├── mpmathdecimal.w │ ├── mpmathdouble.w │ ├── mpost.w │ ├── mpstrings.w │ ├── mptraptest.test │ ├── mpxout.w │ ├── pngout.w │ ├── psout.w │ ├── svgout.w │ └── tfmin.w │ ├── omegafonts │ └── Makefile.in │ ├── omegaware │ └── am │ │ └── omegaware.am │ ├── otps │ ├── Makefile.in │ └── win32 │ │ └── Makefile.in │ ├── patgen.test │ ├── pdftexdir │ ├── am │ │ ├── libpdftex.am │ │ ├── pdftex.am │ │ ├── pdftosrc.am │ │ └── ttf2afm.am │ ├── etex_version.h │ └── pdftex_version.h │ ├── pktogf.test │ ├── pktype.test │ ├── pltotf.test │ ├── pmpostdir │ └── am │ │ └── pmpost.am │ ├── pooltype.test │ ├── ptexdir │ ├── am │ │ └── ptex.am │ └── ptex_version.h │ ├── silent-sh.in │ ├── synctexdir │ ├── ChangeLog │ ├── README.txt │ ├── ac │ │ └── synctex.ac │ ├── am │ │ └── synctex.am │ ├── synctex-common.h │ ├── synctex-luatex.h │ ├── synctex.c │ ├── synctex.h │ ├── synctex.pc.in │ ├── synctex_parser_api_level.txt │ └── synctex_parser_version.txt │ ├── tangle-sh.in │ ├── tangle.ch │ ├── tangle.test │ ├── tangle.web │ ├── tangleboot.pin │ ├── tests │ ├── 1-4.jpg │ ├── B.pdf │ ├── basic.tex │ └── lily-ledger-broken.png │ ├── texmfmem.h │ ├── texmfmp-help.h │ ├── texmfmp.h │ ├── tftopl.test │ ├── tiedir │ ├── ChangeLog │ ├── MANIFEST │ ├── Makefile.cweb │ ├── README │ ├── tie-w2c.ch │ ├── tie.1 │ ├── tie.1.dvi │ ├── tie.1.nroffed │ ├── tie.c │ ├── tie.cf1 │ ├── tie.cf2 │ ├── tie.cf3 │ ├── tie.chf.gen │ ├── tie.master.gen │ ├── tie.test │ ├── tie.tie │ ├── tie.w │ └── tiedoc.tex │ ├── triptrap-sh │ ├── triptrap │ ├── README │ ├── mftrap.diffs │ ├── mftrap.fot │ ├── mftrap.log │ ├── mftrap.pl │ ├── mftrap1.in │ ├── mftrap2.in │ ├── mftrapin.log │ ├── mptrap.diffs │ ├── mptrap.fot │ ├── mptrap.log │ ├── mptrap.pl │ ├── mptrap.readme │ ├── mptrap1.in │ ├── mptrap2.in │ ├── mptrapin.log │ ├── mtrap.0 │ ├── mtrap.1 │ ├── mtrap.log │ ├── mtrap.mp │ ├── texmf.cnf │ ├── trap.148 │ ├── trap.149 │ ├── trap.150 │ ├── trap.151 │ ├── trap.197 │ ├── trap.200 │ ├── trap.5 │ ├── trap.6 │ ├── trap.mf │ ├── trap.mp │ ├── trap.mpx │ ├── trap.typ │ ├── trapf.pl │ ├── trapman.tex │ ├── trip.diffs │ ├── trip.fot │ ├── trip.log │ ├── trip.pl │ ├── trip.tex │ ├── trip.typ │ ├── trip1.in │ ├── trip2.in │ ├── tripin.log │ ├── tripman.tex │ ├── tripos.tex │ ├── writeo │ └── writeo.2 │ ├── uptexdir │ ├── am │ │ └── uptex.am │ └── uptex_version.h │ ├── vftovp.test │ ├── vptovf.test │ ├── w2c │ └── config.h │ ├── weave.test │ ├── web2c-sh.in │ ├── web2c │ ├── ChangeLog │ ├── Makefile.am │ ├── Makefile.in │ ├── README │ ├── aclocal.m4 │ ├── c-auto.in │ ├── coerce.h │ ├── common.defines │ ├── configure │ ├── configure.ac │ ├── convert │ ├── cvtbib.sed │ ├── cvtmf1.sed │ ├── cvtmf2.sed │ ├── fixwrites.c │ ├── kps.c │ ├── main.c │ ├── makecpool.c │ ├── mfmp.defines │ ├── splitup.c │ ├── texmf.defines │ ├── web2c-lexer.c │ ├── web2c-lexer.l │ ├── web2c-parser.c │ ├── web2c-parser.h │ ├── web2c-parser.y │ └── web2c.h │ ├── window │ └── Makefile.in │ └── xetexdir │ ├── am │ └── xetex.am │ ├── etex_version.h │ └── xetex_version.h ├── utils ├── ChangeLog ├── Makefile.am ├── Makefile.in ├── README ├── aclocal.m4 ├── configure └── configure.ac └── version.ac /.gitignore: -------------------------------------------------------------------------------- 1 | /build* 2 | autom4te.cache 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/.travis.yml -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/COPYING -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- 1 | source/texk/web2c/harftexdir/NEWS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/README.md -------------------------------------------------------------------------------- /manual/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/manual/.gitignore -------------------------------------------------------------------------------- /manual/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/manual/Makefile -------------------------------------------------------------------------------- /manual/graphics/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/manual/graphics/Makefile -------------------------------------------------------------------------------- /manual/graphics/fontdir.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/manual/graphics/fontdir.fig -------------------------------------------------------------------------------- /manual/graphics/fontdir.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/manual/graphics/fontdir.pdf -------------------------------------------------------------------------------- /manual/luatex-backend.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/manual/luatex-backend.tex -------------------------------------------------------------------------------- /manual/luatex-callbacks.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/manual/luatex-callbacks.tex -------------------------------------------------------------------------------- /manual/luatex-contents.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/manual/luatex-contents.tex -------------------------------------------------------------------------------- /manual/luatex-enhancements.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/manual/luatex-enhancements.tex -------------------------------------------------------------------------------- /manual/luatex-export-titlepage.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/manual/luatex-export-titlepage.tex -------------------------------------------------------------------------------- /manual/luatex-firstpage.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/manual/luatex-firstpage.tex -------------------------------------------------------------------------------- /manual/luatex-fontloader.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/manual/luatex-fontloader.tex -------------------------------------------------------------------------------- /manual/luatex-fonts.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/manual/luatex-fonts.tex -------------------------------------------------------------------------------- /manual/luatex-graphics.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/manual/luatex-graphics.tex -------------------------------------------------------------------------------- /manual/luatex-introduction.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/manual/luatex-introduction.tex -------------------------------------------------------------------------------- /manual/luatex-languages.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/manual/luatex-languages.tex -------------------------------------------------------------------------------- /manual/luatex-logos.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/manual/luatex-logos.tex -------------------------------------------------------------------------------- /manual/luatex-lua.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/manual/luatex-lua.tex -------------------------------------------------------------------------------- /manual/luatex-math.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/manual/luatex-math.tex -------------------------------------------------------------------------------- /manual/luatex-modifications.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/manual/luatex-modifications.tex -------------------------------------------------------------------------------- /manual/luatex-nodes.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/manual/luatex-nodes.tex -------------------------------------------------------------------------------- /manual/luatex-preamble.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/manual/luatex-preamble.tex -------------------------------------------------------------------------------- /manual/luatex-registers.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/manual/luatex-registers.tex -------------------------------------------------------------------------------- /manual/luatex-statistics.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/manual/luatex-statistics.tex -------------------------------------------------------------------------------- /manual/luatex-style.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/manual/luatex-style.tex -------------------------------------------------------------------------------- /manual/luatex-tex.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/manual/luatex-tex.tex -------------------------------------------------------------------------------- /manual/luatex-titlepage.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/manual/luatex-titlepage.tex -------------------------------------------------------------------------------- /manual/luatex.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/manual/luatex.pdf -------------------------------------------------------------------------------- /manual/luatex.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/manual/luatex.tex -------------------------------------------------------------------------------- /manual/old/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/manual/old/Makefile -------------------------------------------------------------------------------- /manual/old/fdata.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/manual/old/fdata.lua -------------------------------------------------------------------------------- /manual/old/fdata_epdf.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/manual/old/fdata_epdf.lua -------------------------------------------------------------------------------- /manual/old/fdata_img.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/manual/old/fdata_img.lua -------------------------------------------------------------------------------- /manual/old/functionref.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/manual/old/functionref.pdf -------------------------------------------------------------------------------- /manual/old/functionref.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/manual/old/functionref.tex -------------------------------------------------------------------------------- /manual/old/luatexref-env.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/manual/old/luatexref-env.tex -------------------------------------------------------------------------------- /manual/old/luatexref-t.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/manual/old/luatexref-t.pdf -------------------------------------------------------------------------------- /manual/old/luatexref-t.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/manual/old/luatexref-t.tex -------------------------------------------------------------------------------- /manual/temp/luatex-pdf.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/manual/temp/luatex-pdf.tex -------------------------------------------------------------------------------- /source/Build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/Build -------------------------------------------------------------------------------- /source/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/ChangeLog -------------------------------------------------------------------------------- /source/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/Makefile.am -------------------------------------------------------------------------------- /source/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/Makefile.in -------------------------------------------------------------------------------- /source/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/README -------------------------------------------------------------------------------- /source/README.0overview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/README.0overview -------------------------------------------------------------------------------- /source/README.1prerequisites: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/README.1prerequisites -------------------------------------------------------------------------------- /source/README.2building: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/README.2building -------------------------------------------------------------------------------- /source/README.3installing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/README.3installing -------------------------------------------------------------------------------- /source/README.4layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/README.4layout -------------------------------------------------------------------------------- /source/README.5configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/README.5configure -------------------------------------------------------------------------------- /source/README.6coding: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/README.6coding -------------------------------------------------------------------------------- /source/README.7continuous: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/README.7continuous -------------------------------------------------------------------------------- /source/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/aclocal.m4 -------------------------------------------------------------------------------- /source/am/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/am/ChangeLog -------------------------------------------------------------------------------- /source/am/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/am/README -------------------------------------------------------------------------------- /source/am/bin_links.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/am/bin_links.am -------------------------------------------------------------------------------- /source/am/dist_hook.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/am/dist_hook.am -------------------------------------------------------------------------------- /source/am/hdr_links.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/am/hdr_links.am -------------------------------------------------------------------------------- /source/am/man.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/am/man.am -------------------------------------------------------------------------------- /source/am/man1_links.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/am/man1_links.am -------------------------------------------------------------------------------- /source/am/rebuild.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/am/rebuild.am -------------------------------------------------------------------------------- /source/am/reconfig.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/am/reconfig.am -------------------------------------------------------------------------------- /source/am/recurse.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/am/recurse.am -------------------------------------------------------------------------------- /source/am/script_links.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/am/script_links.am -------------------------------------------------------------------------------- /source/auxdir/auxsub/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/auxdir/auxsub/Makefile.am -------------------------------------------------------------------------------- /source/auxdir/auxsub/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/auxdir/auxsub/Makefile.in -------------------------------------------------------------------------------- /source/auxdir/auxsub/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/auxdir/auxsub/README -------------------------------------------------------------------------------- /source/auxdir/auxsub/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/auxdir/auxsub/aclocal.m4 -------------------------------------------------------------------------------- /source/auxdir/auxsub/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/auxdir/auxsub/configure -------------------------------------------------------------------------------- /source/auxdir/auxsub/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/auxdir/auxsub/configure.ac -------------------------------------------------------------------------------- /source/build-aux/README.TL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/build-aux/README.TL -------------------------------------------------------------------------------- /source/build-aux/ar-lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/build-aux/ar-lib -------------------------------------------------------------------------------- /source/build-aux/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/build-aux/compile -------------------------------------------------------------------------------- /source/build-aux/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/build-aux/config.guess -------------------------------------------------------------------------------- /source/build-aux/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/build-aux/config.sub -------------------------------------------------------------------------------- /source/build-aux/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/build-aux/depcomp -------------------------------------------------------------------------------- /source/build-aux/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/build-aux/install-sh -------------------------------------------------------------------------------- /source/build-aux/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/build-aux/ltmain.sh -------------------------------------------------------------------------------- /source/build-aux/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/build-aux/missing -------------------------------------------------------------------------------- /source/build-aux/relpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/build-aux/relpath -------------------------------------------------------------------------------- /source/build-aux/test-driver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/build-aux/test-driver -------------------------------------------------------------------------------- /source/build-aux/texinfo.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/build-aux/texinfo.tex -------------------------------------------------------------------------------- /source/build-aux/ylwrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/build-aux/ylwrap -------------------------------------------------------------------------------- /source/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/configure -------------------------------------------------------------------------------- /source/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/configure.ac -------------------------------------------------------------------------------- /source/doc/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/doc/ChangeLog -------------------------------------------------------------------------------- /source/doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/doc/Makefile.am -------------------------------------------------------------------------------- /source/doc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/doc/Makefile.in -------------------------------------------------------------------------------- /source/doc/README.solaris: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/doc/README.solaris -------------------------------------------------------------------------------- /source/doc/build-tools.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/doc/build-tools.txt -------------------------------------------------------------------------------- /source/doc/splitinfo.gawk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/doc/splitinfo.gawk -------------------------------------------------------------------------------- /source/doc/tlbuild-incl/install-tl.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/doc/tlbuild-incl/install-tl.texi -------------------------------------------------------------------------------- /source/doc/tlbuild-incl/tlmgr.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/doc/tlbuild-incl/tlmgr.texi -------------------------------------------------------------------------------- /source/doc/tlbuild.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/doc/tlbuild.info -------------------------------------------------------------------------------- /source/doc/tlbuild.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/doc/tlbuild.texi -------------------------------------------------------------------------------- /source/libs/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/ChangeLog -------------------------------------------------------------------------------- /source/libs/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/Makefile.am -------------------------------------------------------------------------------- /source/libs/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/Makefile.in -------------------------------------------------------------------------------- /source/libs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/README -------------------------------------------------------------------------------- /source/libs/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/aclocal.m4 -------------------------------------------------------------------------------- /source/libs/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/configure -------------------------------------------------------------------------------- /source/libs/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/configure.ac -------------------------------------------------------------------------------- /source/libs/graphite2/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/graphite2/ChangeLog -------------------------------------------------------------------------------- /source/libs/graphite2/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/graphite2/Makefile.am -------------------------------------------------------------------------------- /source/libs/graphite2/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/graphite2/Makefile.in -------------------------------------------------------------------------------- /source/libs/graphite2/ac/graphite2.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/graphite2/ac/graphite2.ac -------------------------------------------------------------------------------- /source/libs/graphite2/ac/withenable.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/graphite2/ac/withenable.ac -------------------------------------------------------------------------------- /source/libs/graphite2/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/graphite2/aclocal.m4 -------------------------------------------------------------------------------- /source/libs/graphite2/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/graphite2/config.h.in -------------------------------------------------------------------------------- /source/libs/graphite2/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/graphite2/configure -------------------------------------------------------------------------------- /source/libs/graphite2/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/graphite2/configure.ac -------------------------------------------------------------------------------- /source/libs/graphite2/gr2test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/graphite2/gr2test.c -------------------------------------------------------------------------------- /source/libs/graphite2/graphite2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/graphite2/graphite2.test -------------------------------------------------------------------------------- /source/libs/graphite2/version.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/graphite2/version.ac -------------------------------------------------------------------------------- /source/libs/harfbuzz/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/harfbuzz/ChangeLog -------------------------------------------------------------------------------- /source/libs/harfbuzz/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/harfbuzz/Makefile.am -------------------------------------------------------------------------------- /source/libs/harfbuzz/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/harfbuzz/Makefile.in -------------------------------------------------------------------------------- /source/libs/harfbuzz/ac/harfbuzz.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/harfbuzz/ac/harfbuzz.ac -------------------------------------------------------------------------------- /source/libs/harfbuzz/ac/withenable.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/harfbuzz/ac/withenable.ac -------------------------------------------------------------------------------- /source/libs/harfbuzz/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/harfbuzz/aclocal.m4 -------------------------------------------------------------------------------- /source/libs/harfbuzz/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/harfbuzz/config.h.in -------------------------------------------------------------------------------- /source/libs/harfbuzz/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/harfbuzz/configure -------------------------------------------------------------------------------- /source/libs/harfbuzz/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/harfbuzz/configure.ac -------------------------------------------------------------------------------- /source/libs/harfbuzz/harfbuzz-src/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/harfbuzz/harfbuzz-src/NEWS -------------------------------------------------------------------------------- /source/libs/harfbuzz/harfbuzz-src/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/harfbuzz/harfbuzz-src/TODO -------------------------------------------------------------------------------- /source/libs/harfbuzz/harfbuzz.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/harfbuzz/harfbuzz.test -------------------------------------------------------------------------------- /source/libs/harfbuzz/hbtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/harfbuzz/hbtest.c -------------------------------------------------------------------------------- /source/libs/harfbuzz/version.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/harfbuzz/version.ac -------------------------------------------------------------------------------- /source/libs/libpng/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/libpng/ChangeLog -------------------------------------------------------------------------------- /source/libs/libpng/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/libpng/Makefile.am -------------------------------------------------------------------------------- /source/libs/libpng/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/libpng/Makefile.in -------------------------------------------------------------------------------- /source/libs/libpng/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/libpng/README -------------------------------------------------------------------------------- /source/libs/libpng/TLpatches/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/libpng/TLpatches/ChangeLog -------------------------------------------------------------------------------- /source/libs/libpng/TLpatches/TL-Changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/libpng/TLpatches/TL-Changes -------------------------------------------------------------------------------- /source/libs/libpng/ac/libpng.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/libpng/ac/libpng.ac -------------------------------------------------------------------------------- /source/libs/libpng/ac/withenable.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/libpng/ac/withenable.ac -------------------------------------------------------------------------------- /source/libs/libpng/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/libpng/aclocal.m4 -------------------------------------------------------------------------------- /source/libs/libpng/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/libpng/config.h.in -------------------------------------------------------------------------------- /source/libs/libpng/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/libpng/configure -------------------------------------------------------------------------------- /source/libs/libpng/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/libpng/configure.ac -------------------------------------------------------------------------------- /source/libs/libpng/include/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/libpng/include/Makefile.am -------------------------------------------------------------------------------- /source/libs/libpng/include/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/libpng/include/Makefile.in -------------------------------------------------------------------------------- /source/libs/libpng/libpng-src/ANNOUNCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/libpng/libpng-src/ANNOUNCE -------------------------------------------------------------------------------- /source/libs/libpng/libpng-src/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/libpng/libpng-src/AUTHORS -------------------------------------------------------------------------------- /source/libs/libpng/libpng-src/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/libpng/libpng-src/CHANGES -------------------------------------------------------------------------------- /source/libs/libpng/libpng-src/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/libpng/libpng-src/INSTALL -------------------------------------------------------------------------------- /source/libs/libpng/libpng-src/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/libpng/libpng-src/LICENSE -------------------------------------------------------------------------------- /source/libs/libpng/libpng-src/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/libpng/libpng-src/README -------------------------------------------------------------------------------- /source/libs/libpng/libpng-src/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/libpng/libpng-src/TODO -------------------------------------------------------------------------------- /source/libs/libpng/libpng-src/TRADEMARK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/libpng/libpng-src/TRADEMARK -------------------------------------------------------------------------------- /source/libs/libpng/libpng-src/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/libpng/libpng-src/example.c -------------------------------------------------------------------------------- /source/libs/libpng/libpng-src/libpng.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/libpng/libpng-src/libpng.3 -------------------------------------------------------------------------------- /source/libs/libpng/libpng-src/png.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/libpng/libpng-src/png.5 -------------------------------------------------------------------------------- /source/libs/libpng/libpng-src/png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/libpng/libpng-src/png.c -------------------------------------------------------------------------------- /source/libs/libpng/libpng-src/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/libpng/libpng-src/png.h -------------------------------------------------------------------------------- /source/libs/libpng/libpng-src/pngconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/libpng/libpng-src/pngconf.h -------------------------------------------------------------------------------- /source/libs/libpng/libpng-src/pngget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/libpng/libpng-src/pngget.c -------------------------------------------------------------------------------- /source/libs/libpng/libpng-src/pnginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/libpng/libpng-src/pnginfo.h -------------------------------------------------------------------------------- /source/libs/libpng/libpng-src/pngmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/libpng/libpng-src/pngmem.c -------------------------------------------------------------------------------- /source/libs/libpng/libpng-src/pngpriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/libpng/libpng-src/pngpriv.h -------------------------------------------------------------------------------- /source/libs/libpng/libpng-src/pngread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/libpng/libpng-src/pngread.c -------------------------------------------------------------------------------- /source/libs/libpng/libpng-src/pngrio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/libpng/libpng-src/pngrio.c -------------------------------------------------------------------------------- /source/libs/libpng/libpng-src/pngset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/libpng/libpng-src/pngset.c -------------------------------------------------------------------------------- /source/libs/libpng/libpng-src/pngtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/libpng/libpng-src/pngtest.c -------------------------------------------------------------------------------- /source/libs/libpng/libpng-src/pngwio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/libpng/libpng-src/pngwio.c -------------------------------------------------------------------------------- /source/libs/libpng/libpng-src/tests/pngvalid-gamma-16-to-8: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --strict --gamma-16-to-8 3 | -------------------------------------------------------------------------------- /source/libs/libpng/libpng-src/tests/pngvalid-gamma-alpha-mode: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --strict --gamma-alpha-mode 3 | -------------------------------------------------------------------------------- /source/libs/libpng/libpng-src/tests/pngvalid-gamma-background: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --strict --gamma-background 3 | -------------------------------------------------------------------------------- /source/libs/libpng/libpng-src/tests/pngvalid-gamma-sbit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --strict --gamma-sbit 3 | -------------------------------------------------------------------------------- /source/libs/libpng/libpng-src/tests/pngvalid-gamma-threshold: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --strict --gamma-threshold 3 | -------------------------------------------------------------------------------- /source/libs/libpng/libpng-src/tests/pngvalid-gamma-transform: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --strict --gamma-transform 3 | -------------------------------------------------------------------------------- /source/libs/libpng/libpng-src/tests/pngvalid-transform: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --strict --transform 3 | -------------------------------------------------------------------------------- /source/libs/libpng/libpng.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/libpng/libpng.test -------------------------------------------------------------------------------- /source/libs/libpng/version.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/libpng/version.ac -------------------------------------------------------------------------------- /source/libs/lua53/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/lua53/ChangeLog -------------------------------------------------------------------------------- /source/libs/lua53/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/lua53/Makefile.am -------------------------------------------------------------------------------- /source/libs/lua53/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/lua53/Makefile.in -------------------------------------------------------------------------------- /source/libs/lua53/TLpatches/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/lua53/TLpatches/ChangeLog -------------------------------------------------------------------------------- /source/libs/lua53/ac/withenable.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/lua53/ac/withenable.ac -------------------------------------------------------------------------------- /source/libs/lua53/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/lua53/aclocal.m4 -------------------------------------------------------------------------------- /source/libs/lua53/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/lua53/config.h.in -------------------------------------------------------------------------------- /source/libs/lua53/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/lua53/configure -------------------------------------------------------------------------------- /source/libs/lua53/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/lua53/configure.ac -------------------------------------------------------------------------------- /source/libs/lua53/error.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/lua53/error.exp -------------------------------------------------------------------------------- /source/libs/lua53/include/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/lua53/include/Makefile.am -------------------------------------------------------------------------------- /source/libs/lua53/include/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/lua53/include/Makefile.in -------------------------------------------------------------------------------- /source/libs/lua53/lua53-src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/lua53/lua53-src/Makefile -------------------------------------------------------------------------------- /source/libs/lua53/lua53-src/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/lua53/lua53-src/README -------------------------------------------------------------------------------- /source/libs/lua53/lua53-src/doc/lua.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/lua53/lua53-src/doc/lua.1 -------------------------------------------------------------------------------- /source/libs/lua53/lua53-src/doc/lua.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/lua53/lua53-src/doc/lua.css -------------------------------------------------------------------------------- /source/libs/lua53/lua53-src/doc/luac.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/lua53/lua53-src/doc/luac.1 -------------------------------------------------------------------------------- /source/libs/lua53/lua53-src/src/lapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/lua53/lua53-src/src/lapi.c -------------------------------------------------------------------------------- /source/libs/lua53/lua53-src/src/lapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/lua53/lua53-src/src/lapi.h -------------------------------------------------------------------------------- /source/libs/lua53/lua53-src/src/lcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/lua53/lua53-src/src/lcode.c -------------------------------------------------------------------------------- /source/libs/lua53/lua53-src/src/lcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/lua53/lua53-src/src/lcode.h -------------------------------------------------------------------------------- /source/libs/lua53/lua53-src/src/ldo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/lua53/lua53-src/src/ldo.c -------------------------------------------------------------------------------- /source/libs/lua53/lua53-src/src/ldo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/lua53/lua53-src/src/ldo.h -------------------------------------------------------------------------------- /source/libs/lua53/lua53-src/src/ldump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/lua53/lua53-src/src/ldump.c -------------------------------------------------------------------------------- /source/libs/lua53/lua53-src/src/lfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/lua53/lua53-src/src/lfunc.c -------------------------------------------------------------------------------- /source/libs/lua53/lua53-src/src/lfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/lua53/lua53-src/src/lfunc.h -------------------------------------------------------------------------------- /source/libs/lua53/lua53-src/src/lgc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/lua53/lua53-src/src/lgc.c -------------------------------------------------------------------------------- /source/libs/lua53/lua53-src/src/lgc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/lua53/lua53-src/src/lgc.h -------------------------------------------------------------------------------- /source/libs/lua53/lua53-src/src/linit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/lua53/lua53-src/src/linit.c -------------------------------------------------------------------------------- /source/libs/lua53/lua53-src/src/llex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/lua53/lua53-src/src/llex.c -------------------------------------------------------------------------------- /source/libs/lua53/lua53-src/src/llex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/lua53/lua53-src/src/llex.h -------------------------------------------------------------------------------- /source/libs/lua53/lua53-src/src/lmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/lua53/lua53-src/src/lmem.c -------------------------------------------------------------------------------- /source/libs/lua53/lua53-src/src/lmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/lua53/lua53-src/src/lmem.h -------------------------------------------------------------------------------- /source/libs/lua53/lua53-src/src/ltm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/lua53/lua53-src/src/ltm.c -------------------------------------------------------------------------------- /source/libs/lua53/lua53-src/src/ltm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/lua53/lua53-src/src/ltm.h -------------------------------------------------------------------------------- /source/libs/lua53/lua53-src/src/lua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/lua53/lua53-src/src/lua.c -------------------------------------------------------------------------------- /source/libs/lua53/lua53-src/src/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/lua53/lua53-src/src/lua.h -------------------------------------------------------------------------------- /source/libs/lua53/lua53-src/src/lua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/lua53/lua53-src/src/lua.hpp -------------------------------------------------------------------------------- /source/libs/lua53/lua53-src/src/luac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/lua53/lua53-src/src/luac.c -------------------------------------------------------------------------------- /source/libs/lua53/lua53-src/src/lvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/lua53/lua53-src/src/lvm.c -------------------------------------------------------------------------------- /source/libs/lua53/lua53-src/src/lvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/lua53/lua53-src/src/lvm.h -------------------------------------------------------------------------------- /source/libs/lua53/lua53-src/src/lzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/lua53/lua53-src/src/lzio.c -------------------------------------------------------------------------------- /source/libs/lua53/lua53-src/src/lzio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/lua53/lua53-src/src/lzio.h -------------------------------------------------------------------------------- /source/libs/lua53/lua53.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/lua53/lua53.test -------------------------------------------------------------------------------- /source/libs/lua53/luaerror.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/lua53/luaerror.test -------------------------------------------------------------------------------- /source/libs/lua53/luatest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/lua53/luatest.c -------------------------------------------------------------------------------- /source/libs/lua53/texlua53.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/lua53/texlua53.pc.in -------------------------------------------------------------------------------- /source/libs/lua53/version.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/lua53/version.ac -------------------------------------------------------------------------------- /source/libs/zlib/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/zlib/ChangeLog -------------------------------------------------------------------------------- /source/libs/zlib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/zlib/Makefile.am -------------------------------------------------------------------------------- /source/libs/zlib/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/zlib/Makefile.in -------------------------------------------------------------------------------- /source/libs/zlib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/zlib/README -------------------------------------------------------------------------------- /source/libs/zlib/TLpatches/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/zlib/TLpatches/ChangeLog -------------------------------------------------------------------------------- /source/libs/zlib/TLpatches/TL-Changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/zlib/TLpatches/TL-Changes -------------------------------------------------------------------------------- /source/libs/zlib/ac/withenable.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/zlib/ac/withenable.ac -------------------------------------------------------------------------------- /source/libs/zlib/ac/zlib.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/zlib/ac/zlib.ac -------------------------------------------------------------------------------- /source/libs/zlib/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/zlib/aclocal.m4 -------------------------------------------------------------------------------- /source/libs/zlib/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/zlib/config.h.in -------------------------------------------------------------------------------- /source/libs/zlib/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/zlib/configure -------------------------------------------------------------------------------- /source/libs/zlib/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/zlib/configure.ac -------------------------------------------------------------------------------- /source/libs/zlib/include/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/zlib/include/Makefile.am -------------------------------------------------------------------------------- /source/libs/zlib/include/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/zlib/include/Makefile.in -------------------------------------------------------------------------------- /source/libs/zlib/version.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/zlib/version.ac -------------------------------------------------------------------------------- /source/libs/zlib/zlib-src/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/zlib/zlib-src/ChangeLog -------------------------------------------------------------------------------- /source/libs/zlib/zlib-src/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/zlib/zlib-src/FAQ -------------------------------------------------------------------------------- /source/libs/zlib/zlib-src/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/zlib/zlib-src/INDEX -------------------------------------------------------------------------------- /source/libs/zlib/zlib-src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/zlib/zlib-src/Makefile.in -------------------------------------------------------------------------------- /source/libs/zlib/zlib-src/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/zlib/zlib-src/README -------------------------------------------------------------------------------- /source/libs/zlib/zlib-src/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/zlib/zlib-src/adler32.c -------------------------------------------------------------------------------- /source/libs/zlib/zlib-src/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/zlib/zlib-src/compress.c -------------------------------------------------------------------------------- /source/libs/zlib/zlib-src/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/zlib/zlib-src/configure -------------------------------------------------------------------------------- /source/libs/zlib/zlib-src/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/zlib/zlib-src/crc32.c -------------------------------------------------------------------------------- /source/libs/zlib/zlib-src/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/zlib/zlib-src/crc32.h -------------------------------------------------------------------------------- /source/libs/zlib/zlib-src/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/zlib/zlib-src/deflate.c -------------------------------------------------------------------------------- /source/libs/zlib/zlib-src/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/zlib/zlib-src/deflate.h -------------------------------------------------------------------------------- /source/libs/zlib/zlib-src/gzclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/zlib/zlib-src/gzclose.c -------------------------------------------------------------------------------- /source/libs/zlib/zlib-src/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/zlib/zlib-src/gzguts.h -------------------------------------------------------------------------------- /source/libs/zlib/zlib-src/gzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/zlib/zlib-src/gzlib.c -------------------------------------------------------------------------------- /source/libs/zlib/zlib-src/gzread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/zlib/zlib-src/gzread.c -------------------------------------------------------------------------------- /source/libs/zlib/zlib-src/gzwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/zlib/zlib-src/gzwrite.c -------------------------------------------------------------------------------- /source/libs/zlib/zlib-src/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/zlib/zlib-src/infback.c -------------------------------------------------------------------------------- /source/libs/zlib/zlib-src/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/zlib/zlib-src/inffast.c -------------------------------------------------------------------------------- /source/libs/zlib/zlib-src/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/zlib/zlib-src/inffast.h -------------------------------------------------------------------------------- /source/libs/zlib/zlib-src/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/zlib/zlib-src/inffixed.h -------------------------------------------------------------------------------- /source/libs/zlib/zlib-src/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/zlib/zlib-src/inflate.c -------------------------------------------------------------------------------- /source/libs/zlib/zlib-src/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/zlib/zlib-src/inflate.h -------------------------------------------------------------------------------- /source/libs/zlib/zlib-src/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/zlib/zlib-src/inftrees.c -------------------------------------------------------------------------------- /source/libs/zlib/zlib-src/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/zlib/zlib-src/inftrees.h -------------------------------------------------------------------------------- /source/libs/zlib/zlib-src/make_vms.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/zlib/zlib-src/make_vms.com -------------------------------------------------------------------------------- /source/libs/zlib/zlib-src/old/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/zlib/zlib-src/old/README -------------------------------------------------------------------------------- /source/libs/zlib/zlib-src/os400/bndsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/zlib/zlib-src/os400/bndsrc -------------------------------------------------------------------------------- /source/libs/zlib/zlib-src/os400/make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/zlib/zlib-src/os400/make.sh -------------------------------------------------------------------------------- /source/libs/zlib/zlib-src/treebuild.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/zlib/zlib-src/treebuild.xml -------------------------------------------------------------------------------- /source/libs/zlib/zlib-src/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/zlib/zlib-src/trees.c -------------------------------------------------------------------------------- /source/libs/zlib/zlib-src/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/zlib/zlib-src/trees.h -------------------------------------------------------------------------------- /source/libs/zlib/zlib-src/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/zlib/zlib-src/uncompr.c -------------------------------------------------------------------------------- /source/libs/zlib/zlib-src/zconf.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/zlib/zlib-src/zconf.h.in -------------------------------------------------------------------------------- /source/libs/zlib/zlib-src/zlib.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/zlib/zlib-src/zlib.3 -------------------------------------------------------------------------------- /source/libs/zlib/zlib-src/zlib.3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/zlib/zlib-src/zlib.3.pdf -------------------------------------------------------------------------------- /source/libs/zlib/zlib-src/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/zlib/zlib-src/zlib.h -------------------------------------------------------------------------------- /source/libs/zlib/zlib-src/zlib.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/zlib/zlib-src/zlib.map -------------------------------------------------------------------------------- /source/libs/zlib/zlib-src/zlib.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/zlib/zlib-src/zlib.pc.in -------------------------------------------------------------------------------- /source/libs/zlib/zlib-src/zlib2ansi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/zlib/zlib-src/zlib2ansi -------------------------------------------------------------------------------- /source/libs/zlib/zlib-src/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/zlib/zlib-src/zutil.c -------------------------------------------------------------------------------- /source/libs/zlib/zlib-src/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/zlib/zlib-src/zutil.h -------------------------------------------------------------------------------- /source/libs/zlib/zlib.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/zlib/zlib.test -------------------------------------------------------------------------------- /source/libs/zziplib/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/zziplib/ChangeLog -------------------------------------------------------------------------------- /source/libs/zziplib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/zziplib/Makefile.am -------------------------------------------------------------------------------- /source/libs/zziplib/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/zziplib/Makefile.in -------------------------------------------------------------------------------- /source/libs/zziplib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/zziplib/README -------------------------------------------------------------------------------- /source/libs/zziplib/TLpatches/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/zziplib/TLpatches/ChangeLog -------------------------------------------------------------------------------- /source/libs/zziplib/ac/withenable.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/zziplib/ac/withenable.ac -------------------------------------------------------------------------------- /source/libs/zziplib/ac/zziplib.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/zziplib/ac/zziplib.ac -------------------------------------------------------------------------------- /source/libs/zziplib/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/zziplib/aclocal.m4 -------------------------------------------------------------------------------- /source/libs/zziplib/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/zziplib/config.h.in -------------------------------------------------------------------------------- /source/libs/zziplib/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/zziplib/configure -------------------------------------------------------------------------------- /source/libs/zziplib/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/zziplib/configure.ac -------------------------------------------------------------------------------- /source/libs/zziplib/version.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/zziplib/version.ac -------------------------------------------------------------------------------- /source/libs/zziplib/zziplib-src/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/zziplib/zziplib-src/README -------------------------------------------------------------------------------- /source/libs/zziplib/zziplib-src/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/zziplib/zziplib-src/TODO -------------------------------------------------------------------------------- /source/libs/zziplib/zziplib-src/docs/zzipdoc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/libs/zziplib/zziplib.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/libs/zziplib/zziplib.test -------------------------------------------------------------------------------- /source/m4/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/m4/ChangeLog -------------------------------------------------------------------------------- /source/m4/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/m4/README -------------------------------------------------------------------------------- /source/m4/ax_cxx_compile_stdcxx.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/m4/ax_cxx_compile_stdcxx.m4 -------------------------------------------------------------------------------- /source/m4/kpse-asm.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/m4/kpse-asm.m4 -------------------------------------------------------------------------------- /source/m4/kpse-cairo-flags.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/m4/kpse-cairo-flags.m4 -------------------------------------------------------------------------------- /source/m4/kpse-common.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/m4/kpse-common.m4 -------------------------------------------------------------------------------- /source/m4/kpse-cross.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/m4/kpse-cross.m4 -------------------------------------------------------------------------------- /source/m4/kpse-cxx-hack.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/m4/kpse-cxx-hack.m4 -------------------------------------------------------------------------------- /source/m4/kpse-dll-name.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/m4/kpse-dll-name.m4 -------------------------------------------------------------------------------- /source/m4/kpse-fontconfig-flags.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/m4/kpse-fontconfig-flags.m4 -------------------------------------------------------------------------------- /source/m4/kpse-freetype2-flags.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/m4/kpse-freetype2-flags.m4 -------------------------------------------------------------------------------- /source/m4/kpse-gd-flags.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/m4/kpse-gd-flags.m4 -------------------------------------------------------------------------------- /source/m4/kpse-gmp-flags.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/m4/kpse-gmp-flags.m4 -------------------------------------------------------------------------------- /source/m4/kpse-graphite2-flags.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/m4/kpse-graphite2-flags.m4 -------------------------------------------------------------------------------- /source/m4/kpse-harfbuzz-flags.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/m4/kpse-harfbuzz-flags.m4 -------------------------------------------------------------------------------- /source/m4/kpse-icu-flags.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/m4/kpse-icu-flags.m4 -------------------------------------------------------------------------------- /source/m4/kpse-kpathsea-flags.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/m4/kpse-kpathsea-flags.m4 -------------------------------------------------------------------------------- /source/m4/kpse-largefile.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/m4/kpse-largefile.m4 -------------------------------------------------------------------------------- /source/m4/kpse-lex.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/m4/kpse-lex.m4 -------------------------------------------------------------------------------- /source/m4/kpse-lib-version.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/m4/kpse-lib-version.m4 -------------------------------------------------------------------------------- /source/m4/kpse-libpaper-flags.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/m4/kpse-libpaper-flags.m4 -------------------------------------------------------------------------------- /source/m4/kpse-libpng-flags.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/m4/kpse-libpng-flags.m4 -------------------------------------------------------------------------------- /source/m4/kpse-lt-hack.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/m4/kpse-lt-hack.m4 -------------------------------------------------------------------------------- /source/m4/kpse-lua52-flags.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/m4/kpse-lua52-flags.m4 -------------------------------------------------------------------------------- /source/m4/kpse-lua53-flags.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/m4/kpse-lua53-flags.m4 -------------------------------------------------------------------------------- /source/m4/kpse-luajit-flags.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/m4/kpse-luajit-flags.m4 -------------------------------------------------------------------------------- /source/m4/kpse-macos-framework.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/m4/kpse-macos-framework.m4 -------------------------------------------------------------------------------- /source/m4/kpse-mktex.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/m4/kpse-mktex.m4 -------------------------------------------------------------------------------- /source/m4/kpse-mpfr-flags.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/m4/kpse-mpfr-flags.m4 -------------------------------------------------------------------------------- /source/m4/kpse-options.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/m4/kpse-options.m4 -------------------------------------------------------------------------------- /source/m4/kpse-pixman-flags.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/m4/kpse-pixman-flags.m4 -------------------------------------------------------------------------------- /source/m4/kpse-pkgs.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/m4/kpse-pkgs.m4 -------------------------------------------------------------------------------- /source/m4/kpse-poppler-flags.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/m4/kpse-poppler-flags.m4 -------------------------------------------------------------------------------- /source/m4/kpse-progs.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/m4/kpse-progs.m4 -------------------------------------------------------------------------------- /source/m4/kpse-ptexenc-flags.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/m4/kpse-ptexenc-flags.m4 -------------------------------------------------------------------------------- /source/m4/kpse-search-libs.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/m4/kpse-search-libs.m4 -------------------------------------------------------------------------------- /source/m4/kpse-setup.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/m4/kpse-setup.m4 -------------------------------------------------------------------------------- /source/m4/kpse-size-max.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/m4/kpse-size-max.m4 -------------------------------------------------------------------------------- /source/m4/kpse-socket-libs.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/m4/kpse-socket-libs.m4 -------------------------------------------------------------------------------- /source/m4/kpse-teckit-flags.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/m4/kpse-teckit-flags.m4 -------------------------------------------------------------------------------- /source/m4/kpse-visibility.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/m4/kpse-visibility.m4 -------------------------------------------------------------------------------- /source/m4/kpse-warnings.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/m4/kpse-warnings.m4 -------------------------------------------------------------------------------- /source/m4/kpse-web2c.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/m4/kpse-web2c.m4 -------------------------------------------------------------------------------- /source/m4/kpse-win32.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/m4/kpse-win32.m4 -------------------------------------------------------------------------------- /source/m4/kpse-xpdf-flags.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/m4/kpse-xpdf-flags.m4 -------------------------------------------------------------------------------- /source/m4/kpse-zlib-flags.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/m4/kpse-zlib-flags.m4 -------------------------------------------------------------------------------- /source/m4/kpse-zziplib-flags.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/m4/kpse-zziplib-flags.m4 -------------------------------------------------------------------------------- /source/m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/m4/libtool.m4 -------------------------------------------------------------------------------- /source/m4/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/m4/ltoptions.m4 -------------------------------------------------------------------------------- /source/m4/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/m4/ltsugar.m4 -------------------------------------------------------------------------------- /source/m4/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/m4/ltversion.m4 -------------------------------------------------------------------------------- /source/m4/lt~obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/m4/lt~obsolete.m4 -------------------------------------------------------------------------------- /source/reautoconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/reautoconf -------------------------------------------------------------------------------- /source/tardate.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/tardate.ac -------------------------------------------------------------------------------- /source/texk/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/ChangeLog -------------------------------------------------------------------------------- /source/texk/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/Makefile.am -------------------------------------------------------------------------------- /source/texk/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/Makefile.in -------------------------------------------------------------------------------- /source/texk/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/README -------------------------------------------------------------------------------- /source/texk/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/aclocal.m4 -------------------------------------------------------------------------------- /source/texk/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/configure -------------------------------------------------------------------------------- /source/texk/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/configure.ac -------------------------------------------------------------------------------- /source/texk/kpathsea/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/AUTHORS -------------------------------------------------------------------------------- /source/texk/kpathsea/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/ChangeLog -------------------------------------------------------------------------------- /source/texk/kpathsea/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/Makefile.am -------------------------------------------------------------------------------- /source/texk/kpathsea/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/Makefile.in -------------------------------------------------------------------------------- /source/texk/kpathsea/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/NEWS -------------------------------------------------------------------------------- /source/texk/kpathsea/PROJECTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/PROJECTS -------------------------------------------------------------------------------- /source/texk/kpathsea/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/README -------------------------------------------------------------------------------- /source/texk/kpathsea/absolute.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/absolute.c -------------------------------------------------------------------------------- /source/texk/kpathsea/absolute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/absolute.h -------------------------------------------------------------------------------- /source/texk/kpathsea/ac/kpathsea.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/ac/kpathsea.ac -------------------------------------------------------------------------------- /source/texk/kpathsea/ac/mktex.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/ac/mktex.ac -------------------------------------------------------------------------------- /source/texk/kpathsea/ac/withenable.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/ac/withenable.ac -------------------------------------------------------------------------------- /source/texk/kpathsea/access.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/access.c -------------------------------------------------------------------------------- /source/texk/kpathsea/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/aclocal.m4 -------------------------------------------------------------------------------- /source/texk/kpathsea/atou.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/atou.c -------------------------------------------------------------------------------- /source/texk/kpathsea/bsnl.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/bsnl.awk -------------------------------------------------------------------------------- /source/texk/kpathsea/c-auto.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/c-auto.in -------------------------------------------------------------------------------- /source/texk/kpathsea/c-ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/c-ctype.h -------------------------------------------------------------------------------- /source/texk/kpathsea/c-dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/c-dir.h -------------------------------------------------------------------------------- /source/texk/kpathsea/c-errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/c-errno.h -------------------------------------------------------------------------------- /source/texk/kpathsea/c-fopen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/c-fopen.h -------------------------------------------------------------------------------- /source/texk/kpathsea/c-limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/c-limits.h -------------------------------------------------------------------------------- /source/texk/kpathsea/c-memstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/c-memstr.h -------------------------------------------------------------------------------- /source/texk/kpathsea/c-minmax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/c-minmax.h -------------------------------------------------------------------------------- /source/texk/kpathsea/c-namemx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/c-namemx.h -------------------------------------------------------------------------------- /source/texk/kpathsea/c-pathch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/c-pathch.h -------------------------------------------------------------------------------- /source/texk/kpathsea/c-pathmx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/c-pathmx.h -------------------------------------------------------------------------------- /source/texk/kpathsea/c-proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/c-proto.h -------------------------------------------------------------------------------- /source/texk/kpathsea/c-stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/c-stat.h -------------------------------------------------------------------------------- /source/texk/kpathsea/c-std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/c-std.h -------------------------------------------------------------------------------- /source/texk/kpathsea/c-unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/c-unistd.h -------------------------------------------------------------------------------- /source/texk/kpathsea/cnf-to-paths.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/cnf-to-paths.awk -------------------------------------------------------------------------------- /source/texk/kpathsea/cnf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/cnf.c -------------------------------------------------------------------------------- /source/texk/kpathsea/cnf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/cnf.h -------------------------------------------------------------------------------- /source/texk/kpathsea/concat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/concat.c -------------------------------------------------------------------------------- /source/texk/kpathsea/concat3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/concat3.c -------------------------------------------------------------------------------- /source/texk/kpathsea/concatn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/concatn.c -------------------------------------------------------------------------------- /source/texk/kpathsea/concatn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/concatn.h -------------------------------------------------------------------------------- /source/texk/kpathsea/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/config.h -------------------------------------------------------------------------------- /source/texk/kpathsea/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/configure -------------------------------------------------------------------------------- /source/texk/kpathsea/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/configure.ac -------------------------------------------------------------------------------- /source/texk/kpathsea/db.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/db.c -------------------------------------------------------------------------------- /source/texk/kpathsea/db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/db.h -------------------------------------------------------------------------------- /source/texk/kpathsea/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/debug.c -------------------------------------------------------------------------------- /source/texk/kpathsea/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/debug.h -------------------------------------------------------------------------------- /source/texk/kpathsea/default.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/default.h -------------------------------------------------------------------------------- /source/texk/kpathsea/dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/dir.c -------------------------------------------------------------------------------- /source/texk/kpathsea/doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/doc/Makefile.am -------------------------------------------------------------------------------- /source/texk/kpathsea/doc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/doc/Makefile.in -------------------------------------------------------------------------------- /source/texk/kpathsea/doc/kpathsea.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/doc/kpathsea.info -------------------------------------------------------------------------------- /source/texk/kpathsea/doc/kpathsea.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/doc/kpathsea.texi -------------------------------------------------------------------------------- /source/texk/kpathsea/doc/unixtex.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/doc/unixtex.texi -------------------------------------------------------------------------------- /source/texk/kpathsea/elt-dirs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/elt-dirs.c -------------------------------------------------------------------------------- /source/texk/kpathsea/expand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/expand.c -------------------------------------------------------------------------------- /source/texk/kpathsea/expand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/expand.h -------------------------------------------------------------------------------- /source/texk/kpathsea/extend-fname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/extend-fname.c -------------------------------------------------------------------------------- /source/texk/kpathsea/file-p.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/file-p.c -------------------------------------------------------------------------------- /source/texk/kpathsea/find-suffix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/find-suffix.c -------------------------------------------------------------------------------- /source/texk/kpathsea/fn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/fn.c -------------------------------------------------------------------------------- /source/texk/kpathsea/fn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/fn.h -------------------------------------------------------------------------------- /source/texk/kpathsea/fontmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/fontmap.c -------------------------------------------------------------------------------- /source/texk/kpathsea/fontmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/fontmap.h -------------------------------------------------------------------------------- /source/texk/kpathsea/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/getopt.c -------------------------------------------------------------------------------- /source/texk/kpathsea/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/getopt.h -------------------------------------------------------------------------------- /source/texk/kpathsea/getopt1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/getopt1.c -------------------------------------------------------------------------------- /source/texk/kpathsea/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/hash.c -------------------------------------------------------------------------------- /source/texk/kpathsea/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/hash.h -------------------------------------------------------------------------------- /source/texk/kpathsea/kdefault.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/kdefault.c -------------------------------------------------------------------------------- /source/texk/kpathsea/knj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/knj.c -------------------------------------------------------------------------------- /source/texk/kpathsea/knj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/knj.h -------------------------------------------------------------------------------- /source/texk/kpathsea/kpathsea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/kpathsea.c -------------------------------------------------------------------------------- /source/texk/kpathsea/kpathsea.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/kpathsea.pc.in -------------------------------------------------------------------------------- /source/texk/kpathsea/kpsestat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/kpsestat.c -------------------------------------------------------------------------------- /source/texk/kpathsea/kpsewhich.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/kpsewhich.c -------------------------------------------------------------------------------- /source/texk/kpathsea/lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/lib.h -------------------------------------------------------------------------------- /source/texk/kpathsea/line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/line.c -------------------------------------------------------------------------------- /source/texk/kpathsea/line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/line.h -------------------------------------------------------------------------------- /source/texk/kpathsea/magstep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/magstep.c -------------------------------------------------------------------------------- /source/texk/kpathsea/magstep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/magstep.h -------------------------------------------------------------------------------- /source/texk/kpathsea/make-suffix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/make-suffix.c -------------------------------------------------------------------------------- /source/texk/kpathsea/man/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/man/Makefile.am -------------------------------------------------------------------------------- /source/texk/kpathsea/man/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/man/Makefile.in -------------------------------------------------------------------------------- /source/texk/kpathsea/man/kpseaccess.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/man/kpseaccess.man -------------------------------------------------------------------------------- /source/texk/kpathsea/man/kpsestat.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/man/kpsestat.man -------------------------------------------------------------------------------- /source/texk/kpathsea/man/kpsewhich.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/man/kpsewhich.man -------------------------------------------------------------------------------- /source/texk/kpathsea/man/mktexlsr.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/man/mktexlsr.man -------------------------------------------------------------------------------- /source/texk/kpathsea/man/mktexmf.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/man/mktexmf.man -------------------------------------------------------------------------------- /source/texk/kpathsea/man/mktexpk.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/man/mktexpk.man -------------------------------------------------------------------------------- /source/texk/kpathsea/man/mktextfm.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/man/mktextfm.man -------------------------------------------------------------------------------- /source/texk/kpathsea/mingw32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/mingw32.c -------------------------------------------------------------------------------- /source/texk/kpathsea/mingw32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/mingw32.h -------------------------------------------------------------------------------- /source/texk/kpathsea/mktex.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/mktex.cnf -------------------------------------------------------------------------------- /source/texk/kpathsea/mktex.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/mktex.opt -------------------------------------------------------------------------------- /source/texk/kpathsea/mktexdir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/mktexdir -------------------------------------------------------------------------------- /source/texk/kpathsea/mktexdir.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/mktexdir.opt -------------------------------------------------------------------------------- /source/texk/kpathsea/mktexlsr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/mktexlsr -------------------------------------------------------------------------------- /source/texk/kpathsea/mktexmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/mktexmf -------------------------------------------------------------------------------- /source/texk/kpathsea/mktexnam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/mktexnam -------------------------------------------------------------------------------- /source/texk/kpathsea/mktexnam.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/mktexnam.opt -------------------------------------------------------------------------------- /source/texk/kpathsea/mktexpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/mktexpk -------------------------------------------------------------------------------- /source/texk/kpathsea/mktextfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/mktextfm -------------------------------------------------------------------------------- /source/texk/kpathsea/mktexupd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/mktexupd -------------------------------------------------------------------------------- /source/texk/kpathsea/path-elt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/path-elt.c -------------------------------------------------------------------------------- /source/texk/kpathsea/pathsearch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/pathsearch.c -------------------------------------------------------------------------------- /source/texk/kpathsea/pathsearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/pathsearch.h -------------------------------------------------------------------------------- /source/texk/kpathsea/proginit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/proginit.c -------------------------------------------------------------------------------- /source/texk/kpathsea/proginit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/proginit.h -------------------------------------------------------------------------------- /source/texk/kpathsea/progname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/progname.c -------------------------------------------------------------------------------- /source/texk/kpathsea/progname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/progname.h -------------------------------------------------------------------------------- /source/texk/kpathsea/putenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/putenv.c -------------------------------------------------------------------------------- /source/texk/kpathsea/readable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/readable.c -------------------------------------------------------------------------------- /source/texk/kpathsea/readable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/readable.h -------------------------------------------------------------------------------- /source/texk/kpathsea/readlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/readlink.c -------------------------------------------------------------------------------- /source/texk/kpathsea/rm-suffix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/rm-suffix.c -------------------------------------------------------------------------------- /source/texk/kpathsea/simpletypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/simpletypes.h -------------------------------------------------------------------------------- /source/texk/kpathsea/str-list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/str-list.c -------------------------------------------------------------------------------- /source/texk/kpathsea/str-list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/str-list.h -------------------------------------------------------------------------------- /source/texk/kpathsea/str-llist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/str-llist.c -------------------------------------------------------------------------------- /source/texk/kpathsea/str-llist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/str-llist.h -------------------------------------------------------------------------------- /source/texk/kpathsea/systypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/systypes.h -------------------------------------------------------------------------------- /source/texk/kpathsea/tex-file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/tex-file.c -------------------------------------------------------------------------------- /source/texk/kpathsea/tex-file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/tex-file.h -------------------------------------------------------------------------------- /source/texk/kpathsea/tex-glyph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/tex-glyph.c -------------------------------------------------------------------------------- /source/texk/kpathsea/tex-glyph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/tex-glyph.h -------------------------------------------------------------------------------- /source/texk/kpathsea/tex-hush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/tex-hush.c -------------------------------------------------------------------------------- /source/texk/kpathsea/tex-hush.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/tex-hush.h -------------------------------------------------------------------------------- /source/texk/kpathsea/tex-make.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/tex-make.c -------------------------------------------------------------------------------- /source/texk/kpathsea/tex-make.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/tex-make.h -------------------------------------------------------------------------------- /source/texk/kpathsea/texmf.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/texmf.cnf -------------------------------------------------------------------------------- /source/texk/kpathsea/tilde.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/tilde.c -------------------------------------------------------------------------------- /source/texk/kpathsea/tilde.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/tilde.h -------------------------------------------------------------------------------- /source/texk/kpathsea/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/types.h -------------------------------------------------------------------------------- /source/texk/kpathsea/uppercasify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/uppercasify.c -------------------------------------------------------------------------------- /source/texk/kpathsea/variable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/variable.c -------------------------------------------------------------------------------- /source/texk/kpathsea/variable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/variable.h -------------------------------------------------------------------------------- /source/texk/kpathsea/version.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/version.ac -------------------------------------------------------------------------------- /source/texk/kpathsea/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/version.c -------------------------------------------------------------------------------- /source/texk/kpathsea/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/version.h -------------------------------------------------------------------------------- /source/texk/kpathsea/win32/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/win32/ChangeLog -------------------------------------------------------------------------------- /source/texk/kpathsea/win32/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/win32/Makefile.am -------------------------------------------------------------------------------- /source/texk/kpathsea/win32/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/win32/Makefile.in -------------------------------------------------------------------------------- /source/texk/kpathsea/win32/dirutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/win32/dirutil.c -------------------------------------------------------------------------------- /source/texk/kpathsea/win32/getdestdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/win32/getdestdir.c -------------------------------------------------------------------------------- /source/texk/kpathsea/win32/mkpaths.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/win32/mkpaths.c -------------------------------------------------------------------------------- /source/texk/kpathsea/win32/mktex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/win32/mktex.h -------------------------------------------------------------------------------- /source/texk/kpathsea/win32/mktexfmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/win32/mktexfmt.c -------------------------------------------------------------------------------- /source/texk/kpathsea/win32/mktexlsr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/win32/mktexlsr.c -------------------------------------------------------------------------------- /source/texk/kpathsea/win32/mktexmf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/win32/mktexmf.c -------------------------------------------------------------------------------- /source/texk/kpathsea/win32/mktexpk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/win32/mktexpk.c -------------------------------------------------------------------------------- /source/texk/kpathsea/win32/mktextfm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/win32/mktextfm.c -------------------------------------------------------------------------------- /source/texk/kpathsea/win32/mktexupd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/win32/mktexupd.c -------------------------------------------------------------------------------- /source/texk/kpathsea/win32lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/win32lib.c -------------------------------------------------------------------------------- /source/texk/kpathsea/win32lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/win32lib.h -------------------------------------------------------------------------------- /source/texk/kpathsea/xbasename.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/xbasename.c -------------------------------------------------------------------------------- /source/texk/kpathsea/xcalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/xcalloc.c -------------------------------------------------------------------------------- /source/texk/kpathsea/xdirname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/xdirname.c -------------------------------------------------------------------------------- /source/texk/kpathsea/xdirtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/xdirtest.c -------------------------------------------------------------------------------- /source/texk/kpathsea/xfopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/xfopen.c -------------------------------------------------------------------------------- /source/texk/kpathsea/xfseek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/xfseek.c -------------------------------------------------------------------------------- /source/texk/kpathsea/xfseeko.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/xfseeko.c -------------------------------------------------------------------------------- /source/texk/kpathsea/xftell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/xftell.c -------------------------------------------------------------------------------- /source/texk/kpathsea/xftello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/xftello.c -------------------------------------------------------------------------------- /source/texk/kpathsea/xgetcwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/xgetcwd.c -------------------------------------------------------------------------------- /source/texk/kpathsea/xmalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/xmalloc.c -------------------------------------------------------------------------------- /source/texk/kpathsea/xopendir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/xopendir.c -------------------------------------------------------------------------------- /source/texk/kpathsea/xopendir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/xopendir.h -------------------------------------------------------------------------------- /source/texk/kpathsea/xputenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/xputenv.c -------------------------------------------------------------------------------- /source/texk/kpathsea/xrealloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/xrealloc.c -------------------------------------------------------------------------------- /source/texk/kpathsea/xstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/xstat.c -------------------------------------------------------------------------------- /source/texk/kpathsea/xstat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/xstat.h -------------------------------------------------------------------------------- /source/texk/kpathsea/xstrdup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/kpathsea/xstrdup.c -------------------------------------------------------------------------------- /source/texk/texlive/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/texlive/ChangeLog -------------------------------------------------------------------------------- /source/texk/texlive/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/texlive/Makefile.am -------------------------------------------------------------------------------- /source/texk/texlive/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/texlive/Makefile.in -------------------------------------------------------------------------------- /source/texk/texlive/ac/texlive.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/texlive/ac/texlive.ac -------------------------------------------------------------------------------- /source/texk/texlive/ac/withenable.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/texlive/ac/withenable.ac -------------------------------------------------------------------------------- /source/texk/texlive/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/texlive/aclocal.m4 -------------------------------------------------------------------------------- /source/texk/texlive/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/texlive/configure -------------------------------------------------------------------------------- /source/texk/texlive/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/texlive/configure.ac -------------------------------------------------------------------------------- /source/texk/texlive/tl_scripts/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/texlive/tl_scripts/README -------------------------------------------------------------------------------- /source/texk/texlive/tl_scripts/allcm.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/texlive/tl_scripts/allcm.1 -------------------------------------------------------------------------------- /source/texk/texlive/tl_scripts/allcm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/texlive/tl_scripts/allcm.sh -------------------------------------------------------------------------------- /source/texk/texlive/tl_scripts/allec.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/texlive/tl_scripts/allec.1 -------------------------------------------------------------------------------- /source/texk/texlive/tl_scripts/dvired.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/texlive/tl_scripts/dvired.1 -------------------------------------------------------------------------------- /source/texk/texlive/tl_scripts/e2pall.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/texlive/tl_scripts/e2pall.1 -------------------------------------------------------------------------------- /source/texk/texlive/tl_scripts/tcfmgr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/texlive/tl_scripts/tcfmgr -------------------------------------------------------------------------------- /source/texk/texlive/tl_scripts/updmap.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/texlive/tl_scripts/updmap.1 -------------------------------------------------------------------------------- /source/texk/web2c/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/AUTHORS -------------------------------------------------------------------------------- /source/texk/web2c/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/ChangeLog -------------------------------------------------------------------------------- /source/texk/web2c/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/Makefile.am -------------------------------------------------------------------------------- /source/texk/web2c/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/Makefile.in -------------------------------------------------------------------------------- /source/texk/web2c/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/NEWS -------------------------------------------------------------------------------- /source/texk/web2c/PROJECTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/PROJECTS -------------------------------------------------------------------------------- /source/texk/web2c/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/README -------------------------------------------------------------------------------- /source/texk/web2c/ac/web2c.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/ac/web2c.ac -------------------------------------------------------------------------------- /source/texk/web2c/ac/withenable.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/ac/withenable.ac -------------------------------------------------------------------------------- /source/texk/web2c/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/aclocal.m4 -------------------------------------------------------------------------------- /source/texk/web2c/alephdir/am/aleph.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/alephdir/am/aleph.am -------------------------------------------------------------------------------- /source/texk/web2c/am/bootstrap.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/am/bootstrap.am -------------------------------------------------------------------------------- /source/texk/web2c/am/cweb.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/am/cweb.am -------------------------------------------------------------------------------- /source/texk/web2c/am/texmf.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/am/texmf.am -------------------------------------------------------------------------------- /source/texk/web2c/am/web.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/am/web.am -------------------------------------------------------------------------------- /source/texk/web2c/bibtex.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/bibtex.ch -------------------------------------------------------------------------------- /source/texk/web2c/bibtex.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/bibtex.test -------------------------------------------------------------------------------- /source/texk/web2c/bibtex.web: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/bibtex.web -------------------------------------------------------------------------------- /source/texk/web2c/c-auto.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/c-auto.in -------------------------------------------------------------------------------- /source/texk/web2c/cftests/cftest.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/cftests/cftest.ch -------------------------------------------------------------------------------- /source/texk/web2c/cftests/cftest.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/cftests/cftest.p -------------------------------------------------------------------------------- /source/texk/web2c/cftests/cftest.web: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/cftests/cftest.web -------------------------------------------------------------------------------- /source/texk/web2c/cftests/ocftest.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/cftests/ocftest.p -------------------------------------------------------------------------------- /source/texk/web2c/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/configure -------------------------------------------------------------------------------- /source/texk/web2c/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/configure.ac -------------------------------------------------------------------------------- /source/texk/web2c/cpascal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/cpascal.h -------------------------------------------------------------------------------- /source/texk/web2c/ctangleboot-sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/ctangleboot-sh.in -------------------------------------------------------------------------------- /source/texk/web2c/ctangleboot.cin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/ctangleboot.cin -------------------------------------------------------------------------------- /source/texk/web2c/ctiedir/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/ctiedir/ChangeLog -------------------------------------------------------------------------------- /source/texk/web2c/ctiedir/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/ctiedir/Makefile -------------------------------------------------------------------------------- /source/texk/web2c/ctiedir/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/ctiedir/README -------------------------------------------------------------------------------- /source/texk/web2c/ctiedir/ctie-k.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/ctiedir/ctie-k.ch -------------------------------------------------------------------------------- /source/texk/web2c/ctiedir/ctie.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/ctiedir/ctie.1 -------------------------------------------------------------------------------- /source/texk/web2c/ctiedir/ctie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/ctiedir/ctie.c -------------------------------------------------------------------------------- /source/texk/web2c/ctiedir/ctie.cf1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/ctiedir/ctie.cf1 -------------------------------------------------------------------------------- /source/texk/web2c/ctiedir/ctie.cf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/ctiedir/ctie.cf2 -------------------------------------------------------------------------------- /source/texk/web2c/ctiedir/ctie.cf3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/ctiedir/ctie.cf3 -------------------------------------------------------------------------------- /source/texk/web2c/ctiedir/ctie.chf.gen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/ctiedir/ctie.chf.gen -------------------------------------------------------------------------------- /source/texk/web2c/ctiedir/ctie.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/ctiedir/ctie.inc -------------------------------------------------------------------------------- /source/texk/web2c/ctiedir/ctie.inc1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/ctiedir/ctie.inc1 -------------------------------------------------------------------------------- /source/texk/web2c/ctiedir/ctie.inc2: -------------------------------------------------------------------------------- 1 | final inserted include line 2 | -------------------------------------------------------------------------------- /source/texk/web2c/ctiedir/ctie.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/ctiedir/ctie.test -------------------------------------------------------------------------------- /source/texk/web2c/ctiedir/ctie.tie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/ctiedir/ctie.tie -------------------------------------------------------------------------------- /source/texk/web2c/ctiedir/ctie.w: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/ctiedir/ctie.w -------------------------------------------------------------------------------- /source/texk/web2c/ctiedir/ctiedoc.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/ctiedir/ctiedoc.tex -------------------------------------------------------------------------------- /source/texk/web2c/cwebboot.cin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/cwebboot.cin -------------------------------------------------------------------------------- /source/texk/web2c/cwebboot.hin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/cwebboot.hin -------------------------------------------------------------------------------- /source/texk/web2c/cwebdir/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/cwebdir/ChangeLog -------------------------------------------------------------------------------- /source/texk/web2c/cwebdir/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/cwebdir/Makefile -------------------------------------------------------------------------------- /source/texk/web2c/cwebdir/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/cwebdir/README -------------------------------------------------------------------------------- /source/texk/web2c/cwebdir/c++lib.w: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/cwebdir/c++lib.w -------------------------------------------------------------------------------- /source/texk/web2c/cwebdir/comm-amiga.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/cwebdir/comm-amiga.ch -------------------------------------------------------------------------------- /source/texk/web2c/cwebdir/comm-bs.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/cwebdir/comm-bs.ch -------------------------------------------------------------------------------- /source/texk/web2c/cwebdir/comm-mac.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/cwebdir/comm-mac.ch -------------------------------------------------------------------------------- /source/texk/web2c/cwebdir/comm-man.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/cwebdir/comm-man.ch -------------------------------------------------------------------------------- /source/texk/web2c/cwebdir/comm-os2.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/cwebdir/comm-os2.ch -------------------------------------------------------------------------------- /source/texk/web2c/cwebdir/comm-pc.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/cwebdir/comm-pc.ch -------------------------------------------------------------------------------- /source/texk/web2c/cwebdir/comm-ql.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/cwebdir/comm-ql.ch -------------------------------------------------------------------------------- /source/texk/web2c/cwebdir/comm-vms.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/cwebdir/comm-vms.ch -------------------------------------------------------------------------------- /source/texk/web2c/cwebdir/comm-w2c.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/cwebdir/comm-w2c.ch -------------------------------------------------------------------------------- /source/texk/web2c/cwebdir/comm-w2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/cwebdir/comm-w2c.h -------------------------------------------------------------------------------- /source/texk/web2c/cwebdir/comm-w32.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/cwebdir/comm-w32.ch -------------------------------------------------------------------------------- /source/texk/web2c/cwebdir/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/cwebdir/common.c -------------------------------------------------------------------------------- /source/texk/web2c/cwebdir/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/cwebdir/common.h -------------------------------------------------------------------------------- /source/texk/web2c/cwebdir/common.w: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/cwebdir/common.w -------------------------------------------------------------------------------- /source/texk/web2c/cwebdir/ctang-bs.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/cwebdir/ctang-bs.ch -------------------------------------------------------------------------------- /source/texk/web2c/cwebdir/ctang-man.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/cwebdir/ctang-man.ch -------------------------------------------------------------------------------- /source/texk/web2c/cwebdir/ctang-pc.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/cwebdir/ctang-pc.ch -------------------------------------------------------------------------------- /source/texk/web2c/cwebdir/ctang-ql.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/cwebdir/ctang-ql.ch -------------------------------------------------------------------------------- /source/texk/web2c/cwebdir/ctang-vms.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/cwebdir/ctang-vms.ch -------------------------------------------------------------------------------- /source/texk/web2c/cwebdir/ctang-w2c.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/cwebdir/ctang-w2c.ch -------------------------------------------------------------------------------- /source/texk/web2c/cwebdir/ctang-w32.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/cwebdir/ctang-w32.ch -------------------------------------------------------------------------------- /source/texk/web2c/cwebdir/ctangle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/cwebdir/ctangle.c -------------------------------------------------------------------------------- /source/texk/web2c/cwebdir/ctangle.w: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/cwebdir/ctangle.w -------------------------------------------------------------------------------- /source/texk/web2c/cwebdir/cweav-bs.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/cwebdir/cweav-bs.ch -------------------------------------------------------------------------------- /source/texk/web2c/cwebdir/cweav-man.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/cwebdir/cweav-man.ch -------------------------------------------------------------------------------- /source/texk/web2c/cwebdir/cweav-pc.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/cwebdir/cweav-pc.ch -------------------------------------------------------------------------------- /source/texk/web2c/cwebdir/cweave.w: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/cwebdir/cweave.w -------------------------------------------------------------------------------- /source/texk/web2c/cwebdir/cweb.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/cwebdir/cweb.1 -------------------------------------------------------------------------------- /source/texk/web2c/cwebdir/cweb.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/cwebdir/cweb.el -------------------------------------------------------------------------------- /source/texk/web2c/cwebdir/prod.w: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/cwebdir/prod.w -------------------------------------------------------------------------------- /source/texk/web2c/cwebdir/readme.ql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/cwebdir/readme.ql -------------------------------------------------------------------------------- /source/texk/web2c/doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/doc/Makefile.am -------------------------------------------------------------------------------- /source/texk/web2c/doc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/doc/Makefile.in -------------------------------------------------------------------------------- /source/texk/web2c/doc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/doc/README -------------------------------------------------------------------------------- /source/texk/web2c/doc/install.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/doc/install.texi -------------------------------------------------------------------------------- /source/texk/web2c/doc/ref.txi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/doc/ref.txi -------------------------------------------------------------------------------- /source/texk/web2c/doc/web2c.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/doc/web2c.info -------------------------------------------------------------------------------- /source/texk/web2c/doc/web2c.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/doc/web2c.texi -------------------------------------------------------------------------------- /source/texk/web2c/dvicopy.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/dvicopy.test -------------------------------------------------------------------------------- /source/texk/web2c/dvitype.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/dvitype.test -------------------------------------------------------------------------------- /source/texk/web2c/eptexdir/eptex_version.h: -------------------------------------------------------------------------------- 1 | #define EPTEX_VERSION "190131" 2 | -------------------------------------------------------------------------------- /source/texk/web2c/etexdir/am/etex.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/etexdir/am/etex.am -------------------------------------------------------------------------------- /source/texk/web2c/etexdir/etex_version.h: -------------------------------------------------------------------------------- 1 | #define ETEX_VERSION "2.6" 2 | -------------------------------------------------------------------------------- /source/texk/web2c/gftodmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/gftodmem.h -------------------------------------------------------------------------------- /source/texk/web2c/gftodvi.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/gftodvi.test -------------------------------------------------------------------------------- /source/texk/web2c/gftopk.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/gftopk.test -------------------------------------------------------------------------------- /source/texk/web2c/gftype.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/gftype.test -------------------------------------------------------------------------------- /source/texk/web2c/harftexdir/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/harftexdir/NEWS -------------------------------------------------------------------------------- /source/texk/web2c/harftexdir/luafontloader/fontforge/AUTHORS: -------------------------------------------------------------------------------- 1 | George Williams 2 | -------------------------------------------------------------------------------- /source/texk/web2c/harftexdir/luafontloader/fontforge/VERSION: -------------------------------------------------------------------------------- 1 | 20081117 2 | -------------------------------------------------------------------------------- /source/texk/web2c/harftexdir/luaharfbuzz/THANKS: -------------------------------------------------------------------------------- 1 | Simon Cozens 2 | Michal Hoftich 3 | -------------------------------------------------------------------------------- /source/texk/web2c/help.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/help.h -------------------------------------------------------------------------------- /source/texk/web2c/lib/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/lib/ChangeLog -------------------------------------------------------------------------------- /source/texk/web2c/lib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/lib/Makefile.am -------------------------------------------------------------------------------- /source/texk/web2c/lib/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/lib/Makefile.in -------------------------------------------------------------------------------- /source/texk/web2c/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/lib/README -------------------------------------------------------------------------------- /source/texk/web2c/lib/alloca.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/lib/alloca.c -------------------------------------------------------------------------------- /source/texk/web2c/lib/basechsuffix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/lib/basechsuffix.c -------------------------------------------------------------------------------- /source/texk/web2c/lib/chartostring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/lib/chartostring.c -------------------------------------------------------------------------------- /source/texk/web2c/lib/coredump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/lib/coredump.c -------------------------------------------------------------------------------- /source/texk/web2c/lib/eofeoln.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/lib/eofeoln.c -------------------------------------------------------------------------------- /source/texk/web2c/lib/fprintreal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/lib/fprintreal.c -------------------------------------------------------------------------------- /source/texk/web2c/lib/input2int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/lib/input2int.c -------------------------------------------------------------------------------- /source/texk/web2c/lib/inputint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/lib/inputint.c -------------------------------------------------------------------------------- /source/texk/web2c/lib/lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/lib/lib.h -------------------------------------------------------------------------------- /source/texk/web2c/lib/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/lib/main.c -------------------------------------------------------------------------------- /source/texk/web2c/lib/mfmpi386.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/lib/mfmpi386.asm -------------------------------------------------------------------------------- /source/texk/web2c/lib/mfmpw32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/lib/mfmpw32.c -------------------------------------------------------------------------------- /source/texk/web2c/lib/openclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/lib/openclose.c -------------------------------------------------------------------------------- /source/texk/web2c/lib/printversion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/lib/printversion.c -------------------------------------------------------------------------------- /source/texk/web2c/lib/setupvar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/lib/setupvar.c -------------------------------------------------------------------------------- /source/texk/web2c/lib/texmfmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/lib/texmfmp.c -------------------------------------------------------------------------------- /source/texk/web2c/lib/uexit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/lib/uexit.c -------------------------------------------------------------------------------- /source/texk/web2c/lib/usage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/lib/usage.c -------------------------------------------------------------------------------- /source/texk/web2c/lib/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/lib/version.c -------------------------------------------------------------------------------- /source/texk/web2c/lib/zround.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/lib/zround.c -------------------------------------------------------------------------------- /source/texk/web2c/libmd5/am/md5.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/libmd5/am/md5.am -------------------------------------------------------------------------------- /source/texk/web2c/libmd5/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/libmd5/md5.c -------------------------------------------------------------------------------- /source/texk/web2c/libmd5/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/libmd5/md5.h -------------------------------------------------------------------------------- /source/texk/web2c/libmd5/md5.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/libmd5/md5.test -------------------------------------------------------------------------------- /source/texk/web2c/libmd5/md5main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/libmd5/md5main.c -------------------------------------------------------------------------------- /source/texk/web2c/luatexdir/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/luatexdir/NEWS -------------------------------------------------------------------------------- /source/texk/web2c/luatexdir/luafilesystem/src/lfs.def: -------------------------------------------------------------------------------- 1 | LIBRARY lfs.dll 2 | VERSION 1.7 3 | EXPORTS 4 | luaopen_lfs 5 | -------------------------------------------------------------------------------- /source/texk/web2c/luatexdir/luafontloader/fontforge/AUTHORS: -------------------------------------------------------------------------------- 1 | George Williams 2 | -------------------------------------------------------------------------------- /source/texk/web2c/luatexdir/luafontloader/fontforge/VERSION: -------------------------------------------------------------------------------- 1 | 20081117 2 | -------------------------------------------------------------------------------- /source/texk/web2c/luatexdir/luasocket/src/ftp.lua_lua.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/texk/web2c/luatexdir/luasocket/src/headers.lua_lua.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/texk/web2c/luatexdir/luasocket/src/http.lua_lua.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/texk/web2c/luatexdir/luasocket/src/ltn12.lua_lua.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/texk/web2c/luatexdir/luasocket/src/mbox.lua_lua.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/texk/web2c/luatexdir/luasocket/src/mime.lua_lua.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/texk/web2c/luatexdir/luasocket/src/smtp.lua_lua.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/texk/web2c/luatexdir/luasocket/src/tp.lua_lua.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/texk/web2c/luatexdir/luasocket/src/url.lua_lua.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/texk/web2c/luatexdir/luasocket/test/auth/.htpasswd: -------------------------------------------------------------------------------- 1 | luasocket:$apr1$47u2O.Me$.m/5BWAtt7GVoxsouIPBR1 2 | -------------------------------------------------------------------------------- /source/texk/web2c/luatexdir/luatex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/luatexdir/luatex.c -------------------------------------------------------------------------------- /source/texk/web2c/luatexdir/luatex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/luatexdir/luatex.h -------------------------------------------------------------------------------- /source/texk/web2c/luatexdir/luatex_svnversion.h: -------------------------------------------------------------------------------- 1 | #define luatex_svn_revision 7143 2 | -------------------------------------------------------------------------------- /source/texk/web2c/man/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/man/ChangeLog -------------------------------------------------------------------------------- /source/texk/web2c/man/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/man/Makefile.am -------------------------------------------------------------------------------- /source/texk/web2c/man/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/man/Makefile.in -------------------------------------------------------------------------------- /source/texk/web2c/man/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/man/README -------------------------------------------------------------------------------- /source/texk/web2c/man/aleph.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/man/aleph.man -------------------------------------------------------------------------------- /source/texk/web2c/man/amstex.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/man/amstex.man -------------------------------------------------------------------------------- /source/texk/web2c/man/bibtex.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/man/bibtex.man -------------------------------------------------------------------------------- /source/texk/web2c/man/ctie.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/man/ctie.man -------------------------------------------------------------------------------- /source/texk/web2c/man/ctwill.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/man/ctwill.man -------------------------------------------------------------------------------- /source/texk/web2c/man/cweb.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/man/cweb.man -------------------------------------------------------------------------------- /source/texk/web2c/man/dvicopy.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/man/dvicopy.man -------------------------------------------------------------------------------- /source/texk/web2c/man/dvitomp.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/man/dvitomp.man -------------------------------------------------------------------------------- /source/texk/web2c/man/dvitype.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/man/dvitype.man -------------------------------------------------------------------------------- /source/texk/web2c/man/etex.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/man/etex.man -------------------------------------------------------------------------------- /source/texk/web2c/man/gftodvi.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/man/gftodvi.man -------------------------------------------------------------------------------- /source/texk/web2c/man/gftopk.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/man/gftopk.man -------------------------------------------------------------------------------- /source/texk/web2c/man/gftype.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/man/gftype.man -------------------------------------------------------------------------------- /source/texk/web2c/man/latex.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/man/latex.man -------------------------------------------------------------------------------- /source/texk/web2c/man/luatex.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/man/luatex.man -------------------------------------------------------------------------------- /source/texk/web2c/man/mf.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/man/mf.man -------------------------------------------------------------------------------- /source/texk/web2c/man/mft.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/man/mft.man -------------------------------------------------------------------------------- /source/texk/web2c/man/mpost.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/man/mpost.man -------------------------------------------------------------------------------- /source/texk/web2c/man/ofm2opl.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/man/ofm2opl.man -------------------------------------------------------------------------------- /source/texk/web2c/man/opl2ofm.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/man/opl2ofm.man -------------------------------------------------------------------------------- /source/texk/web2c/man/ovf2ovp.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/man/ovf2ovp.man -------------------------------------------------------------------------------- /source/texk/web2c/man/ovp2ovf.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/man/ovp2ovf.man -------------------------------------------------------------------------------- /source/texk/web2c/man/patgen.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/man/patgen.man -------------------------------------------------------------------------------- /source/texk/web2c/man/pdfetex.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/man/pdfetex.man -------------------------------------------------------------------------------- /source/texk/web2c/man/pdftex.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/man/pdftex.man -------------------------------------------------------------------------------- /source/texk/web2c/man/pdftosrc.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/man/pdftosrc.man -------------------------------------------------------------------------------- /source/texk/web2c/man/pktogf.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/man/pktogf.man -------------------------------------------------------------------------------- /source/texk/web2c/man/pktype.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/man/pktype.man -------------------------------------------------------------------------------- /source/texk/web2c/man/pltotf.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/man/pltotf.man -------------------------------------------------------------------------------- /source/texk/web2c/man/pooltype.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/man/pooltype.man -------------------------------------------------------------------------------- /source/texk/web2c/man/spell.add: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/man/spell.add -------------------------------------------------------------------------------- /source/texk/web2c/man/tangle.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/man/tangle.man -------------------------------------------------------------------------------- /source/texk/web2c/man/tex.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/man/tex.man -------------------------------------------------------------------------------- /source/texk/web2c/man/tftopl.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/man/tftopl.man -------------------------------------------------------------------------------- /source/texk/web2c/man/tie.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/man/tie.man -------------------------------------------------------------------------------- /source/texk/web2c/man/ttf2afm.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/man/ttf2afm.man -------------------------------------------------------------------------------- /source/texk/web2c/man/vftovp.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/man/vftovp.man -------------------------------------------------------------------------------- /source/texk/web2c/man/vptovf.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/man/vptovf.man -------------------------------------------------------------------------------- /source/texk/web2c/man/weave.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/man/weave.man -------------------------------------------------------------------------------- /source/texk/web2c/man/xetex.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/man/xetex.man -------------------------------------------------------------------------------- /source/texk/web2c/mft.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/mft.test -------------------------------------------------------------------------------- /source/texk/web2c/mplibdir/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/mplibdir/ChangeLog -------------------------------------------------------------------------------- /source/texk/web2c/mplibdir/avl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/mplibdir/avl.c -------------------------------------------------------------------------------- /source/texk/web2c/mplibdir/avl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/mplibdir/avl.h -------------------------------------------------------------------------------- /source/texk/web2c/mplibdir/lmplib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/mplibdir/lmplib.c -------------------------------------------------------------------------------- /source/texk/web2c/mplibdir/mp.w: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/mplibdir/mp.w -------------------------------------------------------------------------------- /source/texk/web2c/mplibdir/mpmath.w: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/mplibdir/mpmath.w -------------------------------------------------------------------------------- /source/texk/web2c/mplibdir/mpost.w: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/mplibdir/mpost.w -------------------------------------------------------------------------------- /source/texk/web2c/mplibdir/mpxout.w: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/mplibdir/mpxout.w -------------------------------------------------------------------------------- /source/texk/web2c/mplibdir/pngout.w: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/mplibdir/pngout.w -------------------------------------------------------------------------------- /source/texk/web2c/mplibdir/psout.w: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/mplibdir/psout.w -------------------------------------------------------------------------------- /source/texk/web2c/mplibdir/svgout.w: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/mplibdir/svgout.w -------------------------------------------------------------------------------- /source/texk/web2c/mplibdir/tfmin.w: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/mplibdir/tfmin.w -------------------------------------------------------------------------------- /source/texk/web2c/otps/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/otps/Makefile.in -------------------------------------------------------------------------------- /source/texk/web2c/patgen.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/patgen.test -------------------------------------------------------------------------------- /source/texk/web2c/pdftexdir/etex_version.h: -------------------------------------------------------------------------------- 1 | #define ETEX_VERSION "2.6" 2 | -------------------------------------------------------------------------------- /source/texk/web2c/pdftexdir/pdftex_version.h: -------------------------------------------------------------------------------- 1 | #define PDFTEX_VERSION "1.40.20" 2 | -------------------------------------------------------------------------------- /source/texk/web2c/pktogf.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/pktogf.test -------------------------------------------------------------------------------- /source/texk/web2c/pktype.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/pktype.test -------------------------------------------------------------------------------- /source/texk/web2c/pltotf.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/pltotf.test -------------------------------------------------------------------------------- /source/texk/web2c/pooltype.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/pooltype.test -------------------------------------------------------------------------------- /source/texk/web2c/ptexdir/am/ptex.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/ptexdir/am/ptex.am -------------------------------------------------------------------------------- /source/texk/web2c/ptexdir/ptex_version.h: -------------------------------------------------------------------------------- 1 | #define PTEX_VERSION "p3.8.2" 2 | -------------------------------------------------------------------------------- /source/texk/web2c/silent-sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/silent-sh.in -------------------------------------------------------------------------------- /source/texk/web2c/synctexdir/synctex_parser_api_level.txt: -------------------------------------------------------------------------------- 1 | 2.0.0 2 | -------------------------------------------------------------------------------- /source/texk/web2c/synctexdir/synctex_parser_version.txt: -------------------------------------------------------------------------------- 1 | 1.21 2 | -------------------------------------------------------------------------------- /source/texk/web2c/tangle-sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/tangle-sh.in -------------------------------------------------------------------------------- /source/texk/web2c/tangle.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/tangle.ch -------------------------------------------------------------------------------- /source/texk/web2c/tangle.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/tangle.test -------------------------------------------------------------------------------- /source/texk/web2c/tangle.web: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/tangle.web -------------------------------------------------------------------------------- /source/texk/web2c/tangleboot.pin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/tangleboot.pin -------------------------------------------------------------------------------- /source/texk/web2c/tests/1-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/tests/1-4.jpg -------------------------------------------------------------------------------- /source/texk/web2c/tests/B.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/tests/B.pdf -------------------------------------------------------------------------------- /source/texk/web2c/tests/basic.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/tests/basic.tex -------------------------------------------------------------------------------- /source/texk/web2c/texmfmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/texmfmem.h -------------------------------------------------------------------------------- /source/texk/web2c/texmfmp-help.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/texmfmp-help.h -------------------------------------------------------------------------------- /source/texk/web2c/texmfmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/texmfmp.h -------------------------------------------------------------------------------- /source/texk/web2c/tftopl.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/tftopl.test -------------------------------------------------------------------------------- /source/texk/web2c/tiedir/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/tiedir/ChangeLog -------------------------------------------------------------------------------- /source/texk/web2c/tiedir/MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/tiedir/MANIFEST -------------------------------------------------------------------------------- /source/texk/web2c/tiedir/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/tiedir/README -------------------------------------------------------------------------------- /source/texk/web2c/tiedir/tie-w2c.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/tiedir/tie-w2c.ch -------------------------------------------------------------------------------- /source/texk/web2c/tiedir/tie.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/tiedir/tie.1 -------------------------------------------------------------------------------- /source/texk/web2c/tiedir/tie.1.dvi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/tiedir/tie.1.dvi -------------------------------------------------------------------------------- /source/texk/web2c/tiedir/tie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/tiedir/tie.c -------------------------------------------------------------------------------- /source/texk/web2c/tiedir/tie.cf1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/tiedir/tie.cf1 -------------------------------------------------------------------------------- /source/texk/web2c/tiedir/tie.cf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/tiedir/tie.cf2 -------------------------------------------------------------------------------- /source/texk/web2c/tiedir/tie.cf3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/tiedir/tie.cf3 -------------------------------------------------------------------------------- /source/texk/web2c/tiedir/tie.chf.gen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/tiedir/tie.chf.gen -------------------------------------------------------------------------------- /source/texk/web2c/tiedir/tie.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/tiedir/tie.test -------------------------------------------------------------------------------- /source/texk/web2c/tiedir/tie.tie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/tiedir/tie.tie -------------------------------------------------------------------------------- /source/texk/web2c/tiedir/tie.w: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/tiedir/tie.w -------------------------------------------------------------------------------- /source/texk/web2c/tiedir/tiedoc.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/tiedir/tiedoc.tex -------------------------------------------------------------------------------- /source/texk/web2c/triptrap-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/triptrap-sh -------------------------------------------------------------------------------- /source/texk/web2c/triptrap/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/triptrap/README -------------------------------------------------------------------------------- /source/texk/web2c/triptrap/mftrap.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/triptrap/mftrap.pl -------------------------------------------------------------------------------- /source/texk/web2c/triptrap/mftrap1.in: -------------------------------------------------------------------------------- 1 | 2 | \input trap 3 | 4 | -------------------------------------------------------------------------------- /source/texk/web2c/triptrap/mptrap.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/triptrap/mptrap.pl -------------------------------------------------------------------------------- /source/texk/web2c/triptrap/mptrap1.in: -------------------------------------------------------------------------------- 1 | 2 | \input trap 3 | dump 4 | -------------------------------------------------------------------------------- /source/texk/web2c/triptrap/mptrap2.in: -------------------------------------------------------------------------------- 1 | trap 2 | end 3 | -------------------------------------------------------------------------------- /source/texk/web2c/triptrap/mtrap.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/triptrap/mtrap.0 -------------------------------------------------------------------------------- /source/texk/web2c/triptrap/mtrap.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/triptrap/mtrap.1 -------------------------------------------------------------------------------- /source/texk/web2c/triptrap/mtrap.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/triptrap/mtrap.log -------------------------------------------------------------------------------- /source/texk/web2c/triptrap/mtrap.mp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/triptrap/mtrap.mp -------------------------------------------------------------------------------- /source/texk/web2c/triptrap/texmf.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/triptrap/texmf.cnf -------------------------------------------------------------------------------- /source/texk/web2c/triptrap/trap.148: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/triptrap/trap.148 -------------------------------------------------------------------------------- /source/texk/web2c/triptrap/trap.149: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/triptrap/trap.149 -------------------------------------------------------------------------------- /source/texk/web2c/triptrap/trap.150: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/triptrap/trap.150 -------------------------------------------------------------------------------- /source/texk/web2c/triptrap/trap.151: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/triptrap/trap.151 -------------------------------------------------------------------------------- /source/texk/web2c/triptrap/trap.197: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/triptrap/trap.197 -------------------------------------------------------------------------------- /source/texk/web2c/triptrap/trap.200: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/triptrap/trap.200 -------------------------------------------------------------------------------- /source/texk/web2c/triptrap/trap.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/triptrap/trap.5 -------------------------------------------------------------------------------- /source/texk/web2c/triptrap/trap.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/triptrap/trap.6 -------------------------------------------------------------------------------- /source/texk/web2c/triptrap/trap.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/triptrap/trap.mf -------------------------------------------------------------------------------- /source/texk/web2c/triptrap/trap.mp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/triptrap/trap.mp -------------------------------------------------------------------------------- /source/texk/web2c/triptrap/trap.mpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/triptrap/trap.mpx -------------------------------------------------------------------------------- /source/texk/web2c/triptrap/trap.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/triptrap/trap.typ -------------------------------------------------------------------------------- /source/texk/web2c/triptrap/trapf.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/triptrap/trapf.pl -------------------------------------------------------------------------------- /source/texk/web2c/triptrap/trip.fot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/triptrap/trip.fot -------------------------------------------------------------------------------- /source/texk/web2c/triptrap/trip.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/triptrap/trip.log -------------------------------------------------------------------------------- /source/texk/web2c/triptrap/trip.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/triptrap/trip.pl -------------------------------------------------------------------------------- /source/texk/web2c/triptrap/trip.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/triptrap/trip.tex -------------------------------------------------------------------------------- /source/texk/web2c/triptrap/trip.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/triptrap/trip.typ -------------------------------------------------------------------------------- /source/texk/web2c/triptrap/trip1.in: -------------------------------------------------------------------------------- 1 | 2 | \input trip 3 | -------------------------------------------------------------------------------- /source/texk/web2c/triptrap/trip2.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/triptrap/trip2.in -------------------------------------------------------------------------------- /source/texk/web2c/triptrap/writeo: -------------------------------------------------------------------------------- 1 | Clobbered. 2 | -------------------------------------------------------------------------------- /source/texk/web2c/triptrap/writeo.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/triptrap/writeo.2 -------------------------------------------------------------------------------- /source/texk/web2c/uptexdir/uptex_version.h: -------------------------------------------------------------------------------- 1 | #define UPTEX_VERSION "u1.24" 2 | -------------------------------------------------------------------------------- /source/texk/web2c/vftovp.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/vftovp.test -------------------------------------------------------------------------------- /source/texk/web2c/vptovf.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/vptovf.test -------------------------------------------------------------------------------- /source/texk/web2c/w2c/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/w2c/config.h -------------------------------------------------------------------------------- /source/texk/web2c/weave.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/weave.test -------------------------------------------------------------------------------- /source/texk/web2c/web2c-sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/web2c-sh.in -------------------------------------------------------------------------------- /source/texk/web2c/web2c/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/web2c/ChangeLog -------------------------------------------------------------------------------- /source/texk/web2c/web2c/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/web2c/Makefile.am -------------------------------------------------------------------------------- /source/texk/web2c/web2c/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/web2c/Makefile.in -------------------------------------------------------------------------------- /source/texk/web2c/web2c/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/web2c/README -------------------------------------------------------------------------------- /source/texk/web2c/web2c/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/web2c/aclocal.m4 -------------------------------------------------------------------------------- /source/texk/web2c/web2c/c-auto.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/web2c/c-auto.in -------------------------------------------------------------------------------- /source/texk/web2c/web2c/coerce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/web2c/coerce.h -------------------------------------------------------------------------------- /source/texk/web2c/web2c/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/web2c/configure -------------------------------------------------------------------------------- /source/texk/web2c/web2c/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/web2c/configure.ac -------------------------------------------------------------------------------- /source/texk/web2c/web2c/convert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/web2c/convert -------------------------------------------------------------------------------- /source/texk/web2c/web2c/cvtbib.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/web2c/cvtbib.sed -------------------------------------------------------------------------------- /source/texk/web2c/web2c/cvtmf1.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/web2c/cvtmf1.sed -------------------------------------------------------------------------------- /source/texk/web2c/web2c/cvtmf2.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/web2c/cvtmf2.sed -------------------------------------------------------------------------------- /source/texk/web2c/web2c/fixwrites.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/web2c/fixwrites.c -------------------------------------------------------------------------------- /source/texk/web2c/web2c/kps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/web2c/kps.c -------------------------------------------------------------------------------- /source/texk/web2c/web2c/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/web2c/main.c -------------------------------------------------------------------------------- /source/texk/web2c/web2c/makecpool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/web2c/makecpool.c -------------------------------------------------------------------------------- /source/texk/web2c/web2c/mfmp.defines: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/web2c/mfmp.defines -------------------------------------------------------------------------------- /source/texk/web2c/web2c/splitup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/web2c/splitup.c -------------------------------------------------------------------------------- /source/texk/web2c/web2c/web2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/web2c/web2c.h -------------------------------------------------------------------------------- /source/texk/web2c/window/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/texk/web2c/window/Makefile.in -------------------------------------------------------------------------------- /source/texk/web2c/xetexdir/etex_version.h: -------------------------------------------------------------------------------- 1 | #define ETEX_VERSION "2.6" 2 | -------------------------------------------------------------------------------- /source/utils/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/utils/ChangeLog -------------------------------------------------------------------------------- /source/utils/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/utils/Makefile.am -------------------------------------------------------------------------------- /source/utils/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/utils/Makefile.in -------------------------------------------------------------------------------- /source/utils/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/utils/README -------------------------------------------------------------------------------- /source/utils/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/utils/aclocal.m4 -------------------------------------------------------------------------------- /source/utils/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/utils/configure -------------------------------------------------------------------------------- /source/utils/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/utils/configure.ac -------------------------------------------------------------------------------- /source/version.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaledhosny/harftex/HEAD/source/version.ac --------------------------------------------------------------------------------