├── .editorconfig ├── .github └── workflows │ └── c-cpp.yml ├── .gitignore ├── .gitmodules ├── AUTHORS ├── COPYING ├── COPYING-LIB ├── ChangeLog ├── HACKING.org ├── Makefile.am ├── NEWS ├── README ├── README.org ├── THANKS ├── TODO ├── bootstrap ├── bootstrap.conf ├── configure.ac ├── contrib ├── Makefile.am ├── README └── recode.el ├── doc ├── File-Latin1 ├── Makefile.am ├── recode.texi └── rfc1345.texi ├── keld ├── NomsSeulsfinal.lst ├── charsets.def ├── control.def ├── iso10646.def ├── other.def └── rfc1345.txt ├── lib ├── .gitignore └── malloc │ └── .gitignore ├── m4 └── .gitignore ├── po ├── .gitignore └── POTFILES.in ├── src ├── Makefile.am ├── african.c ├── afrtran.c ├── ansellat1.l ├── ascilat1.l ├── atarist.c ├── bangbang.c ├── base64.c ├── base64.h ├── btexlat1.l ├── cdcnos.c ├── charname.c ├── cleaner.h ├── combine.c ├── common.h ├── dump.c ├── ebcdic.c ├── endline.c ├── flat.c ├── fr-charname.c ├── html.c ├── ibmpc.c ├── iconqnx.c ├── iconv.c ├── iso5426lat1.l ├── java.c ├── lat1ansel.c ├── lat1asci.c ├── lat1btex.c ├── lat1iso5426.c ├── lat1ltex.c ├── lat1txte.c ├── ltexlat1.l ├── main.c ├── mergelex.py ├── mixed.c ├── mule.c ├── names.c ├── outer.c ├── permut.c ├── quoted.c ├── recode.c ├── recode.h ├── recode.x.in ├── recodext.h ├── request.c ├── rfc1345.c ├── task.c ├── testdump.c ├── texinfo.c ├── txtelat1.l ├── ucs.c ├── utf16.c ├── utf7.c ├── utf8.c ├── varia.c └── vn.c ├── stamp-h.in ├── stamp-pot ├── tables.py └── tests ├── .gitignore ├── Makefile.am ├── Recode.pyx ├── asan-suppressions.txt ├── common.py ├── pytest ├── setup.py.in ├── t21_names.py ├── t22_lists.py ├── t25_subsets.py ├── t30_base64.py ├── t30_dumps.py ├── t30_quoted.py ├── t40_african.py ├── t40_combine.py ├── t40_html.py ├── t40_java.py ├── t40_testdump.py ├── t40_utf7.py ├── t40_utf8.py ├── t50_methods.py ├── t70_inferenz.py ├── t80_error.py └── t90_bigauto.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/c-cpp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/.github/workflows/c-cpp.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/.gitmodules -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/COPYING -------------------------------------------------------------------------------- /COPYING-LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/COPYING-LIB -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- 1 | See git history. -------------------------------------------------------------------------------- /HACKING.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/HACKING.org -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/NEWS -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | README.org -------------------------------------------------------------------------------- /README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/README.org -------------------------------------------------------------------------------- /THANKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/THANKS -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/TODO -------------------------------------------------------------------------------- /bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/bootstrap -------------------------------------------------------------------------------- /bootstrap.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/bootstrap.conf -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/configure.ac -------------------------------------------------------------------------------- /contrib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/contrib/Makefile.am -------------------------------------------------------------------------------- /contrib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/contrib/README -------------------------------------------------------------------------------- /contrib/recode.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/contrib/recode.el -------------------------------------------------------------------------------- /doc/File-Latin1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/doc/File-Latin1 -------------------------------------------------------------------------------- /doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/doc/Makefile.am -------------------------------------------------------------------------------- /doc/recode.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/doc/recode.texi -------------------------------------------------------------------------------- /doc/rfc1345.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/doc/rfc1345.texi -------------------------------------------------------------------------------- /keld/NomsSeulsfinal.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/keld/NomsSeulsfinal.lst -------------------------------------------------------------------------------- /keld/charsets.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/keld/charsets.def -------------------------------------------------------------------------------- /keld/control.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/keld/control.def -------------------------------------------------------------------------------- /keld/iso10646.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/keld/iso10646.def -------------------------------------------------------------------------------- /keld/other.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/keld/other.def -------------------------------------------------------------------------------- /keld/rfc1345.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/keld/rfc1345.txt -------------------------------------------------------------------------------- /lib/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/lib/.gitignore -------------------------------------------------------------------------------- /lib/malloc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/lib/malloc/.gitignore -------------------------------------------------------------------------------- /m4/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/m4/.gitignore -------------------------------------------------------------------------------- /po/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/po/.gitignore -------------------------------------------------------------------------------- /po/POTFILES.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/po/POTFILES.in -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/african.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/src/african.c -------------------------------------------------------------------------------- /src/afrtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/src/afrtran.c -------------------------------------------------------------------------------- /src/ansellat1.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/src/ansellat1.l -------------------------------------------------------------------------------- /src/ascilat1.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/src/ascilat1.l -------------------------------------------------------------------------------- /src/atarist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/src/atarist.c -------------------------------------------------------------------------------- /src/bangbang.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/src/bangbang.c -------------------------------------------------------------------------------- /src/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/src/base64.c -------------------------------------------------------------------------------- /src/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/src/base64.h -------------------------------------------------------------------------------- /src/btexlat1.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/src/btexlat1.l -------------------------------------------------------------------------------- /src/cdcnos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/src/cdcnos.c -------------------------------------------------------------------------------- /src/charname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/src/charname.c -------------------------------------------------------------------------------- /src/cleaner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/src/cleaner.h -------------------------------------------------------------------------------- /src/combine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/src/combine.c -------------------------------------------------------------------------------- /src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/src/common.h -------------------------------------------------------------------------------- /src/dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/src/dump.c -------------------------------------------------------------------------------- /src/ebcdic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/src/ebcdic.c -------------------------------------------------------------------------------- /src/endline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/src/endline.c -------------------------------------------------------------------------------- /src/flat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/src/flat.c -------------------------------------------------------------------------------- /src/fr-charname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/src/fr-charname.c -------------------------------------------------------------------------------- /src/html.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/src/html.c -------------------------------------------------------------------------------- /src/ibmpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/src/ibmpc.c -------------------------------------------------------------------------------- /src/iconqnx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/src/iconqnx.c -------------------------------------------------------------------------------- /src/iconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/src/iconv.c -------------------------------------------------------------------------------- /src/iso5426lat1.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/src/iso5426lat1.l -------------------------------------------------------------------------------- /src/java.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/src/java.c -------------------------------------------------------------------------------- /src/lat1ansel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/src/lat1ansel.c -------------------------------------------------------------------------------- /src/lat1asci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/src/lat1asci.c -------------------------------------------------------------------------------- /src/lat1btex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/src/lat1btex.c -------------------------------------------------------------------------------- /src/lat1iso5426.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/src/lat1iso5426.c -------------------------------------------------------------------------------- /src/lat1ltex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/src/lat1ltex.c -------------------------------------------------------------------------------- /src/lat1txte.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/src/lat1txte.c -------------------------------------------------------------------------------- /src/ltexlat1.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/src/ltexlat1.l -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/src/main.c -------------------------------------------------------------------------------- /src/mergelex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/src/mergelex.py -------------------------------------------------------------------------------- /src/mixed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/src/mixed.c -------------------------------------------------------------------------------- /src/mule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/src/mule.c -------------------------------------------------------------------------------- /src/names.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/src/names.c -------------------------------------------------------------------------------- /src/outer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/src/outer.c -------------------------------------------------------------------------------- /src/permut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/src/permut.c -------------------------------------------------------------------------------- /src/quoted.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/src/quoted.c -------------------------------------------------------------------------------- /src/recode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/src/recode.c -------------------------------------------------------------------------------- /src/recode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/src/recode.h -------------------------------------------------------------------------------- /src/recode.x.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/src/recode.x.in -------------------------------------------------------------------------------- /src/recodext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/src/recodext.h -------------------------------------------------------------------------------- /src/request.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/src/request.c -------------------------------------------------------------------------------- /src/rfc1345.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/src/rfc1345.c -------------------------------------------------------------------------------- /src/task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/src/task.c -------------------------------------------------------------------------------- /src/testdump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/src/testdump.c -------------------------------------------------------------------------------- /src/texinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/src/texinfo.c -------------------------------------------------------------------------------- /src/txtelat1.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/src/txtelat1.l -------------------------------------------------------------------------------- /src/ucs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/src/ucs.c -------------------------------------------------------------------------------- /src/utf16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/src/utf16.c -------------------------------------------------------------------------------- /src/utf7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/src/utf7.c -------------------------------------------------------------------------------- /src/utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/src/utf8.c -------------------------------------------------------------------------------- /src/varia.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/src/varia.c -------------------------------------------------------------------------------- /src/vn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/src/vn.c -------------------------------------------------------------------------------- /stamp-h.in: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /stamp-pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/stamp-pot -------------------------------------------------------------------------------- /tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/tables.py -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/tests/.gitignore -------------------------------------------------------------------------------- /tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/tests/Makefile.am -------------------------------------------------------------------------------- /tests/Recode.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/tests/Recode.pyx -------------------------------------------------------------------------------- /tests/asan-suppressions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/tests/asan-suppressions.txt -------------------------------------------------------------------------------- /tests/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/tests/common.py -------------------------------------------------------------------------------- /tests/pytest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/tests/pytest -------------------------------------------------------------------------------- /tests/setup.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/tests/setup.py.in -------------------------------------------------------------------------------- /tests/t21_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/tests/t21_names.py -------------------------------------------------------------------------------- /tests/t22_lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/tests/t22_lists.py -------------------------------------------------------------------------------- /tests/t25_subsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/tests/t25_subsets.py -------------------------------------------------------------------------------- /tests/t30_base64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/tests/t30_base64.py -------------------------------------------------------------------------------- /tests/t30_dumps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/tests/t30_dumps.py -------------------------------------------------------------------------------- /tests/t30_quoted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/tests/t30_quoted.py -------------------------------------------------------------------------------- /tests/t40_african.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/tests/t40_african.py -------------------------------------------------------------------------------- /tests/t40_combine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/tests/t40_combine.py -------------------------------------------------------------------------------- /tests/t40_html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/tests/t40_html.py -------------------------------------------------------------------------------- /tests/t40_java.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/tests/t40_java.py -------------------------------------------------------------------------------- /tests/t40_testdump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/tests/t40_testdump.py -------------------------------------------------------------------------------- /tests/t40_utf7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/tests/t40_utf7.py -------------------------------------------------------------------------------- /tests/t40_utf8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/tests/t40_utf8.py -------------------------------------------------------------------------------- /tests/t50_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/tests/t50_methods.py -------------------------------------------------------------------------------- /tests/t70_inferenz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/tests/t70_inferenz.py -------------------------------------------------------------------------------- /tests/t80_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/tests/t80_error.py -------------------------------------------------------------------------------- /tests/t90_bigauto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrthomas/recode/HEAD/tests/t90_bigauto.py --------------------------------------------------------------------------------