├── .editorconfig ├── .gitattributes ├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md ├── stale.yml └── workflows │ └── build.yml ├── .gitignore ├── .travis.yml ├── CODEOWNERS ├── appveyor.yml ├── doc ├── pawn-imp.pdf └── pawn-lang.pdf ├── docker ├── Dockerfile ├── build.sh └── docker-entrypoint.sh ├── examples ├── argument.p ├── c2f.p ├── capt.p ├── cards.p ├── chat.p ├── comment.p ├── faculty.p ├── fib.p ├── gcd.p ├── gtkcalc.p ├── hanoi.p ├── hello.p ├── hello2.p ├── julian.p ├── ones.p ├── queue.p ├── quine.p ├── randlist.p ├── readfile.p ├── rot13.p ├── rpn.p ├── rpnparse.inc ├── set.p ├── sieve.p ├── stack.inc ├── strtok.inc ├── traffic.p ├── traffic2.p ├── turtle.p ├── wcount.p └── weekday.p ├── history.txt ├── include ├── amxdll.inc ├── args.inc ├── console.inc ├── core.inc ├── datagram.inc ├── default.inc ├── file.inc ├── fixed.inc ├── float.inc ├── process.inc ├── rational.inc ├── string.inc └── time.inc ├── license.txt ├── readme.md ├── readme_compuphase.txt ├── source ├── amx │ ├── CMakeLists.txt │ ├── amx.c │ ├── amx.h │ ├── amxDGram.def │ ├── amxDGram.rc │ ├── amxFile.rc │ ├── amxFixed.def │ ├── amxFixed.rc │ ├── amxFloat.def │ ├── amxFloat.rc │ ├── amxProcess.def │ ├── amxProcess.rc │ ├── amxargs.c │ ├── amxargs.def │ ├── amxargs.rc │ ├── amxaux.c │ ├── amxaux.h │ ├── amxcons.c │ ├── amxcons.h │ ├── amxcore.c │ ├── amxdbg.c │ ├── amxdbg.h │ ├── amxdef.asm │ ├── amxdefn.asm │ ├── amxdgram.c │ ├── amxexec.asm │ ├── amxexecn.asm │ ├── amxfile.c │ ├── amxfile.def │ ├── amxfloat.c │ ├── amxgc.c │ ├── amxgc.h │ ├── amxjitr.asm │ ├── amxjits.asm │ ├── amxjitsn.asm │ ├── amxprocess.c │ ├── amxstring.c │ ├── amxstring.def │ ├── amxstring.rc │ ├── amxtime.c │ ├── amxtime.def │ ├── amxtime.rc │ ├── dllmain.c │ ├── examples │ │ ├── logfile.cpp │ │ └── power.c │ ├── fixed.c │ ├── fpattern.c │ ├── fpattern.h │ ├── minGlue.h │ ├── minIni.c │ ├── minIni.h │ ├── obj │ │ ├── amxexecc.obj │ │ ├── amxexecs.obj │ │ ├── amxjitr.obj │ │ └── amxjits.obj │ ├── osdefs.h │ ├── pawndbg.c │ ├── pawnrun.c │ ├── pawnrun │ │ ├── prun1.c │ │ ├── prun2.c │ │ ├── prun3.c │ │ ├── prun4.c │ │ ├── prun5.c │ │ ├── prun_jit.c │ │ └── readme.txt │ ├── term_ga.c │ ├── term_ga.h │ ├── termwin.c │ └── termwin.h ├── bin │ └── pawn.ico ├── compiler │ ├── CMakeLists.txt │ ├── codepage │ │ ├── 10000.txt │ │ ├── 10001.txt │ │ ├── 10002.txt │ │ ├── 10003.txt │ │ ├── 10004.txt │ │ ├── 10005.txt │ │ ├── 10006.txt │ │ ├── 10007.txt │ │ ├── 10008.txt │ │ ├── 10010.txt │ │ ├── 10017.txt │ │ ├── 10021.txt │ │ ├── 10029.txt │ │ ├── 10079.txt │ │ ├── 10081.txt │ │ ├── 10082.txt │ │ ├── 1026.txt │ │ ├── 1047.txt │ │ ├── 1140.txt │ │ ├── 1141.txt │ │ ├── 1142.txt │ │ ├── 1143.txt │ │ ├── 1144.txt │ │ ├── 1145.txt │ │ ├── 1146.txt │ │ ├── 1147.txt │ │ ├── 1148.txt │ │ ├── 1149.txt │ │ ├── 1250.txt │ │ ├── 1251.txt │ │ ├── 1252.txt │ │ ├── 1253.txt │ │ ├── 1254.txt │ │ ├── 1255.txt │ │ ├── 1256.txt │ │ ├── 1257.txt │ │ ├── 1258.txt │ │ ├── 1361.txt │ │ ├── 20000.txt │ │ ├── 20001.txt │ │ ├── 20002.txt │ │ ├── 20003.txt │ │ ├── 20004.txt │ │ ├── 20005.txt │ │ ├── 20105.txt │ │ ├── 20106.txt │ │ ├── 20107.txt │ │ ├── 20108.txt │ │ ├── 20127.txt │ │ ├── 20261.txt │ │ ├── 20269.txt │ │ ├── 20273.txt │ │ ├── 20277.txt │ │ ├── 20278.txt │ │ ├── 20280.txt │ │ ├── 20284.txt │ │ ├── 20285.txt │ │ ├── 20290.txt │ │ ├── 20297.txt │ │ ├── 20420.txt │ │ ├── 20423.txt │ │ ├── 20424.txt │ │ ├── 20833.txt │ │ ├── 20838.txt │ │ ├── 20866.txt │ │ ├── 20871.txt │ │ ├── 20880.txt │ │ ├── 20905.txt │ │ ├── 20924.txt │ │ ├── 20932.txt │ │ ├── 20936.txt │ │ ├── 20949.txt │ │ ├── 21025.txt │ │ ├── 21027.txt │ │ ├── 21866.txt │ │ ├── 28591.txt │ │ ├── 28592.txt │ │ ├── 28593.txt │ │ ├── 28594.txt │ │ ├── 28595.txt │ │ ├── 28596.txt │ │ ├── 28597.txt │ │ ├── 28598.txt │ │ ├── 28599.txt │ │ ├── 28603.txt │ │ ├── 28605.txt │ │ ├── 37.txt │ │ ├── 38598.txt │ │ ├── 437.txt │ │ ├── 500.txt │ │ ├── 51932.txt │ │ ├── 51936.txt │ │ ├── 51949.txt │ │ ├── 708.txt │ │ ├── 720.txt │ │ ├── 737.txt │ │ ├── 775.txt │ │ ├── 850.txt │ │ ├── 852.txt │ │ ├── 855.txt │ │ ├── 857.txt │ │ ├── 858.txt │ │ ├── 860.txt │ │ ├── 861.txt │ │ ├── 862.txt │ │ ├── 863.txt │ │ ├── 864.txt │ │ ├── 865.txt │ │ ├── 866.txt │ │ ├── 869.txt │ │ ├── 870.txt │ │ ├── 874.txt │ │ ├── 875.txt │ │ ├── 932.txt │ │ ├── 936.txt │ │ ├── 949.txt │ │ ├── 950.txt │ │ ├── aix-CNS11643.1986_1-4.3.6.txt │ │ ├── aix-CNS11643.1986_2-4.3.6.txt │ │ ├── aix-IBM_1046-4.3.6.txt │ │ ├── aix-IBM_1124-4.3.6.txt │ │ ├── aix-IBM_1129-4.3.6.txt │ │ ├── aix-IBM_1252-4.3.6.txt │ │ ├── aix-IBM_850-4.3.6.txt │ │ ├── aix-IBM_856-4.3.6.txt │ │ ├── aix-IBM_858-4.3.6.txt │ │ ├── aix-IBM_932-4.3.6.txt │ │ ├── aix-IBM_943-4.3.6.txt │ │ ├── aix-IBM_eucJP-4.3.6.txt │ │ ├── aix-IBM_eucKR-4.3.6.txt │ │ ├── aix-IBM_eucTW-4.3.6.txt │ │ ├── aix-IBM_udcJP-4.3.6.txt │ │ ├── aix-IBM_udcJP_GR-4.3.6.txt │ │ ├── aix-ISO8859_1-4.3.6.txt │ │ ├── aix-ISO8859_15-4.3.6.txt │ │ ├── aix-ISO8859_2-4.3.6.txt │ │ ├── aix-ISO8859_3-4.3.6.txt │ │ ├── aix-ISO8859_4-4.3.6.txt │ │ ├── aix-ISO8859_5-4.3.6.txt │ │ ├── aix-ISO8859_6-4.3.6.txt │ │ ├── aix-ISO8859_7-4.3.6.txt │ │ ├── aix-ISO8859_8-4.3.6.txt │ │ ├── aix-ISO8859_9-4.3.6.txt │ │ ├── aix-JISX0201.1976_0-4.3.6.txt │ │ ├── aix-JISX0201.1976_GR-4.3.6.txt │ │ ├── aix-JISX0208.1983_0-4.3.6.txt │ │ ├── aix-JISX0208.1983_GR-4.3.6.txt │ │ ├── aix-KSC5601.1987_0-4.3.6.txt │ │ ├── aix-TIS_620-4.3.6.txt │ │ ├── aix-big5-4.3.6.txt │ │ ├── cns-11643-1992.txt │ │ ├── euc-jp-2007.txt │ │ ├── euc-tw-2014.txt │ │ ├── gb-18030-2000.txt │ │ ├── gb-18030-2005.txt │ │ ├── glibc-ANSI_X3.110-2.1.2.txt │ │ ├── glibc-ANSI_X3.110-2.3.3.txt │ │ ├── glibc-ARMSCII_8-2.3.3.txt │ │ ├── glibc-ASMO_449-2.1.2.txt │ │ ├── glibc-BALTIC-2.1.2.txt │ │ ├── glibc-BIG5-2.1.2.txt │ │ ├── glibc-BIG5-2.3.3.txt │ │ ├── glibc-BIG5HKSCS-2.3.3.txt │ │ ├── glibc-BS_4730-2.3.3.txt │ │ ├── glibc-CP10007-2.3.3.txt │ │ ├── glibc-CP1125-2.3.3.txt │ │ ├── glibc-CP1250-2.1.2.txt │ │ ├── glibc-CP1251-2.1.2.txt │ │ ├── glibc-CP1252-2.1.2.txt │ │ ├── glibc-CP1253-2.1.2.txt │ │ ├── glibc-CP1254-2.1.2.txt │ │ ├── glibc-CP1255-2.1.2.txt │ │ ├── glibc-CP1256-2.1.2.txt │ │ ├── glibc-CP1257-2.1.2.txt │ │ ├── glibc-CP1258-2.1.2.txt │ │ ├── glibc-CP737-2.1.2.txt │ │ ├── glibc-CP775-2.1.2.txt │ │ ├── glibc-CP932-2.3.3.txt │ │ ├── glibc-CSA_Z243.4_1985_1-2.3.3.txt │ │ ├── glibc-CSA_Z243.4_1985_2-2.3.3.txt │ │ ├── glibc-CSN_369103-2.1.2.txt │ │ ├── glibc-CWI-2.1.2.txt │ │ ├── glibc-DEC_MCS-2.1.2.txt │ │ ├── glibc-DIN_66003-2.3.3.txt │ │ ├── glibc-DS_2089-2.3.3.txt │ │ ├── glibc-EBCDIC_AT_DE-2.1.2.txt │ │ ├── glibc-EBCDIC_AT_DE_A-2.1.2.txt │ │ ├── glibc-EBCDIC_CA_FR-2.1.2.txt │ │ ├── glibc-EBCDIC_DK_NO-2.1.2.txt │ │ ├── glibc-EBCDIC_DK_NO_A-2.1.2.txt │ │ ├── glibc-EBCDIC_ES-2.1.2.txt │ │ ├── glibc-EBCDIC_ES_A-2.1.2.txt │ │ ├── glibc-EBCDIC_ES_S-2.1.2.txt │ │ ├── glibc-EBCDIC_FI_SE-2.1.2.txt │ │ ├── glibc-EBCDIC_FI_SE_A-2.1.2.txt │ │ ├── glibc-EBCDIC_FR-2.1.2.txt │ │ ├── glibc-EBCDIC_IS_FRISS-2.1.2.txt │ │ ├── glibc-EBCDIC_IT-2.1.2.txt │ │ ├── glibc-EBCDIC_PT-2.1.2.txt │ │ ├── glibc-EBCDIC_UK-2.1.2.txt │ │ ├── glibc-EBCDIC_US-2.1.2.txt │ │ ├── glibc-ECMA_CYRILLIC-2.3.3.txt │ │ ├── glibc-ES-2.3.3.txt │ │ ├── glibc-ES2-2.3.3.txt │ │ ├── glibc-EUC_CN-2.1.2.txt │ │ ├── glibc-EUC_CN-2.3.3.txt │ │ ├── glibc-EUC_JP-2.1.2.txt │ │ ├── glibc-EUC_JP-2.3.3.txt │ │ ├── glibc-EUC_JP_MS-2.3.3.txt │ │ ├── glibc-EUC_KR-2.1.2.txt │ │ ├── glibc-EUC_KR-2.3.3.txt │ │ ├── glibc-EUC_TW-2.1.2.txt │ │ ├── glibc-GBK-2.3.3.txt │ │ ├── glibc-GB_1988_80-2.3.3.txt │ │ ├── glibc-GEORGIAN_ACADEMY-2.3.3.txt │ │ ├── glibc-GEORGIAN_PS-2.3.3.txt │ │ ├── glibc-GOST_19768_74-2.1.2.txt │ │ ├── glibc-GREEK7-2.1.2.txt │ │ ├── glibc-GREEK7_OLD-2.1.2.txt │ │ ├── glibc-GREEK_CCITT-2.1.2.txt │ │ ├── glibc-HP_ROMAN8-2.1.2.txt │ │ ├── glibc-IBM037-2.1.2.txt │ │ ├── glibc-IBM038-2.1.2.txt │ │ ├── glibc-IBM1004-2.1.2.txt │ │ ├── glibc-IBM1026-2.1.2.txt │ │ ├── glibc-IBM1046-2.3.3.txt │ │ ├── glibc-IBM1047-2.1.2.txt │ │ ├── glibc-IBM1124-2.3.3.txt │ │ ├── glibc-IBM1129-2.3.3.txt │ │ ├── glibc-IBM1132-2.3.3.txt │ │ ├── glibc-IBM1133-2.3.3.txt │ │ ├── glibc-IBM1160-2.3.3.txt │ │ ├── glibc-IBM1161-2.3.3.txt │ │ ├── glibc-IBM1162-2.3.3.txt │ │ ├── glibc-IBM1163-2.3.3.txt │ │ ├── glibc-IBM1164-2.3.3.txt │ │ ├── glibc-IBM256-2.1.2.txt │ │ ├── glibc-IBM273-2.1.2.txt │ │ ├── glibc-IBM274-2.1.2.txt │ │ ├── glibc-IBM275-2.1.2.txt │ │ ├── glibc-IBM277-2.1.2.txt │ │ ├── glibc-IBM278-2.1.2.txt │ │ ├── glibc-IBM280-2.1.2.txt │ │ ├── glibc-IBM281-2.1.2.txt │ │ ├── glibc-IBM284-2.1.2.txt │ │ ├── glibc-IBM285-2.1.2.txt │ │ ├── glibc-IBM290-2.1.2.txt │ │ ├── glibc-IBM297-2.1.2.txt │ │ ├── glibc-IBM420-2.1.2.txt │ │ ├── glibc-IBM423-2.1.2.txt │ │ ├── glibc-IBM424-2.1.2.txt │ │ ├── glibc-IBM437-2.1.2.txt │ │ ├── glibc-IBM500-2.1.2.txt │ │ ├── glibc-IBM850-2.1.2.txt │ │ ├── glibc-IBM851-2.1.2.txt │ │ ├── glibc-IBM852-2.1.2.txt │ │ ├── glibc-IBM855-2.1.2.txt │ │ ├── glibc-IBM856-2.3.3.txt │ │ ├── glibc-IBM857-2.1.2.txt │ │ ├── glibc-IBM860-2.1.2.txt │ │ ├── glibc-IBM861-2.1.2.txt │ │ ├── glibc-IBM862-2.1.2.txt │ │ ├── glibc-IBM863-2.1.2.txt │ │ ├── glibc-IBM864-2.1.2.txt │ │ ├── glibc-IBM864-2.3.3.txt │ │ ├── glibc-IBM865-2.1.2.txt │ │ ├── glibc-IBM866-2.1.2.txt │ │ ├── glibc-IBM866NAV-2.3.3.txt │ │ ├── glibc-IBM868-2.1.2.txt │ │ ├── glibc-IBM869-2.1.2.txt │ │ ├── glibc-IBM870-2.1.2.txt │ │ ├── glibc-IBM870-2.3.3.txt │ │ ├── glibc-IBM871-2.1.2.txt │ │ ├── glibc-IBM874-2.1.2.txt │ │ ├── glibc-IBM874-2.3.3.txt │ │ ├── glibc-IBM875-2.1.2.txt │ │ ├── glibc-IBM880-2.1.2.txt │ │ ├── glibc-IBM891-2.1.2.txt │ │ ├── glibc-IBM903-2.1.2.txt │ │ ├── glibc-IBM904-2.1.2.txt │ │ ├── glibc-IBM905-2.1.2.txt │ │ ├── glibc-IBM918-2.1.2.txt │ │ ├── glibc-IBM922-2.3.3.txt │ │ ├── glibc-IBM943-2.3.3.txt │ │ ├── glibc-IEC_P27_1-2.1.2.txt │ │ ├── glibc-INIS-2.1.2.txt │ │ ├── glibc-INIS_8-2.1.2.txt │ │ ├── glibc-INIS_CYRILLIC-2.1.2.txt │ │ ├── glibc-ISIRI_3342-2.3.3.txt │ │ ├── glibc-ISO646_US-2.1.2.txt │ │ ├── glibc-ISO_10367_BOX-2.1.2.txt │ │ ├── glibc-ISO_5427-2.1.2.txt │ │ ├── glibc-ISO_5427_EXT-2.1.2.txt │ │ ├── glibc-ISO_5428-2.1.2.txt │ │ ├── glibc-ISO_5428-2.3.3.txt │ │ ├── glibc-ISO_6937-2.3.3.txt │ │ ├── glibc-ISO_8859_1-2.1.2.txt │ │ ├── glibc-ISO_8859_10-2.1.2.txt │ │ ├── glibc-ISO_8859_11-2.1.2.txt │ │ ├── glibc-ISO_8859_13-2.1.2.txt │ │ ├── glibc-ISO_8859_13-2.3.3.txt │ │ ├── glibc-ISO_8859_14-2.1.2.txt │ │ ├── glibc-ISO_8859_15-2.1.2.txt │ │ ├── glibc-ISO_8859_16-2.3.3.txt │ │ ├── glibc-ISO_8859_2-2.1.2.txt │ │ ├── glibc-ISO_8859_3-2.1.2.txt │ │ ├── glibc-ISO_8859_4-2.1.2.txt │ │ ├── glibc-ISO_8859_5-2.1.2.txt │ │ ├── glibc-ISO_8859_6-2.1.2.txt │ │ ├── glibc-ISO_8859_7-2.1.2.txt │ │ ├── glibc-ISO_8859_7-2.3.3.txt │ │ ├── glibc-ISO_8859_8-2.1.2.txt │ │ ├── glibc-ISO_8859_8-2.3.3.txt │ │ ├── glibc-ISO_8859_9-2.1.2.txt │ │ ├── glibc-ISO_IR_197-2.1.2.txt │ │ ├── glibc-ISO_IR_209-2.3.3.txt │ │ ├── glibc-IT-2.3.3.txt │ │ ├── glibc-JIS_C6220_1969_RO-2.3.3.txt │ │ ├── glibc-JIS_C6229_1984_B-2.3.3.txt │ │ ├── glibc-JOHAB-2.3.3.txt │ │ ├── glibc-JUS_I.B1.002-2.3.3.txt │ │ ├── glibc-KOI8_R-2.1.2.txt │ │ ├── glibc-KOI8_R-2.3.3.txt │ │ ├── glibc-KOI8_T-2.3.3.txt │ │ ├── glibc-KOI8_U-2.1.2.txt │ │ ├── glibc-KOI8_U-2.3.3.txt │ │ ├── glibc-KOI_8-2.1.2.txt │ │ ├── glibc-KSC5636-2.3.3.txt │ │ ├── glibc-LATIN_GREEK-2.1.2.txt │ │ ├── glibc-LATIN_GREEK_1-2.1.2.txt │ │ ├── glibc-MACINTOSH-2.1.2.txt │ │ ├── glibc-MACINTOSH-2.3.3.txt │ │ ├── glibc-MAC_IS-2.1.2.txt │ │ ├── glibc-MAC_SAMI-2.3.3.txt │ │ ├── glibc-MAC_UK-2.1.2.txt │ │ ├── glibc-MSZ_7795.3-2.3.3.txt │ │ ├── glibc-NATS_DANO-2.1.2.txt │ │ ├── glibc-NATS_SEFI-2.1.2.txt │ │ ├── glibc-NC_NC00_10-2.3.3.txt │ │ ├── glibc-NF_Z_62_010-2.3.3.txt │ │ ├── glibc-NF_Z_62_010_1973-2.3.3.txt │ │ ├── glibc-NS_4551_1-2.3.3.txt │ │ ├── glibc-NS_4551_2-2.3.3.txt │ │ ├── glibc-PT-2.3.3.txt │ │ ├── glibc-PT154-2.3.3.txt │ │ ├── glibc-PT2-2.3.3.txt │ │ ├── glibc-RK1048-2.3.3.txt │ │ ├── glibc-SEN_850200_B-2.3.3.txt │ │ ├── glibc-SEN_850200_C-2.3.3.txt │ │ ├── glibc-SJIS-2.1.2.txt │ │ ├── glibc-SJIS-2.3.3.txt │ │ ├── glibc-T.61_8BIT-2.3.3.txt │ │ ├── glibc-TIS_620-2.1.2.txt │ │ ├── glibc-UHC-2.1.2.txt │ │ ├── glibc-UHC-2.3.3.txt │ │ ├── glibc-VISCII-2.3.3.txt │ │ ├── glibc-WIN_SAMI_2-2.3.3.txt │ │ ├── hpux-big5-11.11.txt │ │ ├── hpux-cp1140-11.11.txt │ │ ├── hpux-cp1141-11.11.txt │ │ ├── hpux-cp1142-11.11.txt │ │ ├── hpux-cp1143-11.11.txt │ │ ├── hpux-cp1144-11.11.txt │ │ ├── hpux-cp1145-11.11.txt │ │ ├── hpux-cp1146-11.11.txt │ │ ├── hpux-cp1147-11.11.txt │ │ ├── hpux-cp1148-11.11.txt │ │ ├── hpux-cp1149-11.11.txt │ │ ├── hpux-cp1250-11.11.txt │ │ ├── hpux-cp1251-11.11.txt │ │ ├── hpux-cp1252-11.11.txt │ │ ├── hpux-cp1253-11.11.txt │ │ ├── hpux-cp1254-11.11.txt │ │ ├── hpux-cp1255-11.11.txt │ │ ├── hpux-cp1256-11.11.txt │ │ ├── hpux-cp1257-11.11.txt │ │ ├── hpux-cp1258-11.11.txt │ │ ├── hpux-cp437-11.11.txt │ │ ├── hpux-cp737-11.11.txt │ │ ├── hpux-cp775-11.11.txt │ │ ├── hpux-cp850-11.11.txt │ │ ├── hpux-cp852-11.11.txt │ │ ├── hpux-cp855-11.11.txt │ │ ├── hpux-cp857-11.11.txt │ │ ├── hpux-cp860-11.11.txt │ │ ├── hpux-cp861-11.11.txt │ │ ├── hpux-cp862-11.11.txt │ │ ├── hpux-cp863-11.11.txt │ │ ├── hpux-cp864-11.11.txt │ │ ├── hpux-cp865-11.11.txt │ │ ├── hpux-cp866-11.11.txt │ │ ├── hpux-cp869-11.11.txt │ │ ├── hpux-cp874-11.11.txt │ │ ├── hpux-eucJP-11.11.txt │ │ ├── hpux-eucJP0201-11.11.txt │ │ ├── hpux-eucJPMS-11.11.txt │ │ ├── hpux-eucKR-11.11.txt │ │ ├── hpux-eucTW-11.11.txt │ │ ├── hpux-greee-11.11.txt │ │ ├── hpux-hkbig5-11.11.txt │ │ ├── hpux-hp15CN-11.11.txt │ │ ├── hpux-iso81-11.0.txt │ │ ├── hpux-iso815-11.0.txt │ │ ├── hpux-iso82-11.0.txt │ │ ├── hpux-iso85-11.0.txt │ │ ├── hpux-iso86-11.0.txt │ │ ├── hpux-iso87-11.0.txt │ │ ├── hpux-iso87-11.11.txt │ │ ├── hpux-iso88-11.0.txt │ │ ├── hpux-iso89-11.0.txt │ │ ├── hpux-roc15-11.11.txt │ │ ├── hpux-roma8-11.0.txt │ │ ├── hpux-sjis-11.11.txt │ │ ├── hpux-sjis0201-11.11.txt │ │ ├── hpux-sjisMS-11.11.txt │ │ ├── hpux-thai8-11.0.txt │ │ ├── ibm-1004_P100-1995.txt │ │ ├── ibm-1006_P100-1995.txt │ │ ├── ibm-1006_X100-1995.txt │ │ ├── ibm-1008_P100-1995.txt │ │ ├── ibm-1008_X100-1995.txt │ │ ├── ibm-1009_P100-1995.txt │ │ ├── ibm-1010_P100-1995.txt │ │ ├── ibm-1011_P100-1995.txt │ │ ├── ibm-1012_P100-1995.txt │ │ ├── ibm-1013_P100-1995.txt │ │ ├── ibm-1014_P100-1995.txt │ │ ├── ibm-1015_P100-1995.txt │ │ ├── ibm-1016_P100-1995.txt │ │ ├── ibm-1017_P100-1995.txt │ │ ├── ibm-1018_P100-1995.txt │ │ ├── ibm-1019_P100-1995.txt │ │ ├── ibm-1020_P100-2003.txt │ │ ├── ibm-1021_P100-2003.txt │ │ ├── ibm-1023_P100-2003.txt │ │ ├── ibm-1025_P100-1995.txt │ │ ├── ibm-1026_P100-1995.txt │ │ ├── ibm-1027_P100-1995.txt │ │ ├── ibm-1040_P100-1995.txt │ │ ├── ibm-1041_P100-1995.txt │ │ ├── ibm-1042_P100-1995.txt │ │ ├── ibm-1043_P100-1995.txt │ │ ├── ibm-1046_X110-1999.txt │ │ ├── ibm-1047_P100-1995.txt │ │ ├── ibm-1051_P100-1999.txt │ │ ├── ibm-1088_P100-1995.txt │ │ ├── ibm-1089_P100-1995.txt │ │ ├── ibm-1097_P100-1995.txt │ │ ├── ibm-1097_X100-1995.txt │ │ ├── ibm-1098_P100-1995.txt │ │ ├── ibm-1098_X100-1995.txt │ │ ├── ibm-1100_P100-2003.txt │ │ ├── ibm-1101_P100-2003.txt │ │ ├── ibm-1102_P100-2003.txt │ │ ├── ibm-1103_P100-2003.txt │ │ ├── ibm-1104_P100-2003.txt │ │ ├── ibm-1105_P100-2003.txt │ │ ├── ibm-1106_P100-2003.txt │ │ ├── ibm-1107_P100-2003.txt │ │ ├── ibm-1112_P100-1995.txt │ │ ├── ibm-1114_P100-1995.txt │ │ ├── ibm-1114_P100-2001.txt │ │ ├── ibm-1115_P100-1995.txt │ │ ├── ibm-1122_P100-1999.txt │ │ ├── ibm-1123_P100-1995.txt │ │ ├── ibm-1124_X100-1996.txt │ │ ├── ibm-1125_P100-1997.txt │ │ ├── ibm-1126_P100-1997.txt │ │ ├── ibm-1126_P100_P100-1997_U3.txt │ │ ├── ibm-1127_P100-2004.txt │ │ ├── ibm-1129_P100-1997.txt │ │ ├── ibm-1130_P100-1997.txt │ │ ├── ibm-1131_P100-1997.txt │ │ ├── ibm-1132_P100-1997.txt │ │ ├── ibm-1132_P100-1998.txt │ │ ├── ibm-1133_P100-1997.txt │ │ ├── ibm-1137_P100-1999.txt │ │ ├── ibm-1137_PMOD-1999.txt │ │ ├── ibm-1140_P100-1997.txt │ │ ├── ibm-1141_P100-1997.txt │ │ ├── ibm-1142_P100-1997.txt │ │ ├── ibm-1143_P100-1997.txt │ │ ├── ibm-1144_P100-1997.txt │ │ ├── ibm-1145_P100-1997.txt │ │ ├── ibm-1146_P100-1997.txt │ │ ├── ibm-1147_P100-1997.txt │ │ ├── ibm-1148_P100-1997.txt │ │ ├── ibm-1149_P100-1997.txt │ │ ├── ibm-1153_P100-1999.txt │ │ ├── ibm-1154_P100-1999.txt │ │ ├── ibm-1155_P100-1999.txt │ │ ├── ibm-1156_P100-1999.txt │ │ ├── ibm-1157_P100-1999.txt │ │ ├── ibm-1158_P100-1999.txt │ │ ├── ibm-1159_P100-1999.txt │ │ ├── ibm-1160_P100-1999.txt │ │ ├── ibm-1161_P100-1999.txt │ │ ├── ibm-1162_P100-1999.txt │ │ ├── ibm-1163_P100-1999.txt │ │ ├── ibm-1164_P100-1999.txt │ │ ├── ibm-1165_P101-2000.txt │ │ ├── ibm-1166_P100-2002.txt │ │ ├── ibm-1167_P100-2002.txt │ │ ├── ibm-1168_P100-2002.txt │ │ ├── ibm-1174_X100-2007.txt │ │ ├── ibm-1250_P100-1999.txt │ │ ├── ibm-1251_P100-1995.txt │ │ ├── ibm-1252_P100-2000.txt │ │ ├── ibm-1253_P100-1995.txt │ │ ├── ibm-1254_P100-1995.txt │ │ ├── ibm-1255_P100-1995.txt │ │ ├── ibm-1256_P110-1997.txt │ │ ├── ibm-1257_P100-1995.txt │ │ ├── ibm-1258_P100-1997.txt │ │ ├── ibm-12712_P100-1998.txt │ │ ├── ibm-1275_P100-1995.txt │ │ ├── ibm-1275_X100-1995.txt │ │ ├── ibm-1276_P100-1995.txt │ │ ├── ibm-1277_P100-1995.txt │ │ ├── ibm-1280_P100-1996.txt │ │ ├── ibm-1281_P100-1996.txt │ │ ├── ibm-1282_P100-1996.txt │ │ ├── ibm-1283_P100-1996.txt │ │ ├── ibm-1284_P100-1996.txt │ │ ├── ibm-1285_P100-1996.txt │ │ ├── ibm-13121_P100-1995.txt │ │ ├── ibm-13124_P100-1995.txt │ │ ├── ibm-13124_P10A-1995.txt │ │ ├── ibm-13125_P100-1997.txt │ │ ├── ibm-13140_P101-2000.txt │ │ ├── ibm-13143_P101-2000.txt │ │ ├── ibm-13145_P101-2000.txt │ │ ├── ibm-13156_P101-2000.txt │ │ ├── ibm-13157_P101-2000.txt │ │ ├── ibm-13162_P101-2000.txt │ │ ├── ibm-13218_P100-1996.txt │ │ ├── ibm-1350_P110-1997.txt │ │ ├── ibm-1351_P110-1997.txt │ │ ├── ibm-1362_P100-1997.txt │ │ ├── ibm-1362_P110-1999.txt │ │ ├── ibm-1363_P100-1997.txt │ │ ├── ibm-1363_P10A-1997.txt │ │ ├── ibm-1363_P10B-1998.txt │ │ ├── ibm-1363_P110-1999.txt │ │ ├── ibm-1363_P11A-1999.txt │ │ ├── ibm-1363_P11B-1999.txt │ │ ├── ibm-1363_P11C-2006.txt │ │ ├── ibm-1364_P100-2007.txt │ │ ├── ibm-1364_P110-2007.txt │ │ ├── ibm-13676_P102-2001.txt │ │ ├── ibm-1370_P100-1999.txt │ │ ├── ibm-1370_X100-1999.txt │ │ ├── ibm-1371_P100-1999.txt │ │ ├── ibm-1371_X100-1999.txt │ │ ├── ibm-1373_P100-2002.txt │ │ ├── ibm-1374_P100-2005.txt │ │ ├── ibm-1374_P100_P100-2005_MS.txt │ │ ├── ibm-1375_P100-2004.txt │ │ ├── ibm-1375_P100-2006.txt │ │ ├── ibm-1375_P100-2007.txt │ │ ├── ibm-1375_P100-2008.txt │ │ ├── ibm-1375_X100-2004.txt │ │ ├── ibm-1377_P100-2006.txt │ │ ├── ibm-1377_P100-2008.txt │ │ ├── ibm-1377_P100_P100-2006_U3.txt │ │ ├── ibm-1380_P100-1995.txt │ │ ├── ibm-1380_X100-1995.txt │ │ ├── ibm-1381_P110-1999.txt │ │ ├── ibm-1381_X110-1999.txt │ │ ├── ibm-1382_P100-1995.txt │ │ ├── ibm-1382_X100-1995.txt │ │ ├── ibm-1383_P110-1999.txt │ │ ├── ibm-1383_X110-1999.txt │ │ ├── ibm-1385_P100-1997.txt │ │ ├── ibm-1385_P100-2005.txt │ │ ├── ibm-1386_P100-2001.txt │ │ ├── ibm-1386_P110-1997.txt │ │ ├── ibm-1388_P103-2001.txt │ │ ├── ibm-1388_P110-2000.txt │ │ ├── ibm-1390_P100-1999.txt │ │ ├── ibm-1390_P110-2003.txt │ │ ├── ibm-1399_P100-1999.txt │ │ ├── ibm-1399_P110-2003.txt │ │ ├── ibm-16684_P100-1999.txt │ │ ├── ibm-16684_P110-2003.txt │ │ ├── ibm-16804_X110-1999.txt │ │ ├── ibm-17221_P100-2001.txt │ │ ├── ibm-17240_P101-2000.txt │ │ ├── ibm-17248_X110-1999.txt │ │ ├── ibm-20780_P100-1999.txt │ │ ├── ibm-21344_P101-2000.txt │ │ ├── ibm-21427_P100-1999.txt │ │ ├── ibm-21427_X100-1999.txt │ │ ├── ibm-25546_P100-1997.txt │ │ ├── ibm-256_P100-1995.txt │ │ ├── ibm-259_P100-1995.txt │ │ ├── ibm-259_X100-1995.txt │ │ ├── ibm-273_P100-1999.txt │ │ ├── ibm-274_P100-2000.txt │ │ ├── ibm-275_P100-1995.txt │ │ ├── ibm-277_P100-1999.txt │ │ ├── ibm-278_P100-1999.txt │ │ ├── ibm-280_P100-1999.txt │ │ ├── ibm-282_P100-1995.txt │ │ ├── ibm-284_P100-1999.txt │ │ ├── ibm-285_P100-1999.txt │ │ ├── ibm-286_P100-2003.txt │ │ ├── ibm-28709_P100-1995.txt │ │ ├── ibm-290_P100-1995.txt │ │ ├── ibm-293_P100-1995.txt │ │ ├── ibm-293_X100-1995.txt │ │ ├── ibm-297_P100-1999.txt │ │ ├── ibm-300_P110-1997.txt │ │ ├── ibm-300_P120-2006.txt │ │ ├── ibm-300_X110-1997.txt │ │ ├── ibm-301_P110-1997.txt │ │ ├── ibm-301_X110-1997.txt │ │ ├── ibm-33058_P100-2000.txt │ │ ├── ibm-33722_P120-1999.txt │ │ ├── ibm-33722_P12A-1999.txt │ │ ├── ibm-33722_P12A_P12A-2004_U2.txt │ │ ├── ibm-33722_P12A_P12A-2009_U2.txt │ │ ├── ibm-367_P100-1995.txt │ │ ├── ibm-37_P100-1999.txt │ │ ├── ibm-420_X110-1999.txt │ │ ├── ibm-420_X120-1999.txt │ │ ├── ibm-423_P100-1995.txt │ │ ├── ibm-424_P100-1995.txt │ │ ├── ibm-425_P101-2000.txt │ │ ├── ibm-437_P100-1995.txt │ │ ├── ibm-4517_P100-2005.txt │ │ ├── ibm-4899_P100-1998.txt │ │ ├── ibm-4904_P101-2000.txt │ │ ├── ibm-4909_P100-1999.txt │ │ ├── ibm-4930_P100-1997.txt │ │ ├── ibm-4930_P110-1999.txt │ │ ├── ibm-4933_P100-1996.txt │ │ ├── ibm-4933_P100-2002.txt │ │ ├── ibm-4944_P101-2000.txt │ │ ├── ibm-4945_P101-2000.txt │ │ ├── ibm-4948_P100-1995.txt │ │ ├── ibm-4951_P100-1995.txt │ │ ├── ibm-4952_P100-1995.txt │ │ ├── ibm-4954_P101-2000.txt │ │ ├── ibm-4955_P101-2000.txt │ │ ├── ibm-4956_P101-2000.txt │ │ ├── ibm-4957_P101-2000.txt │ │ ├── ibm-4958_P101-2000.txt │ │ ├── ibm-4959_P101-2000.txt │ │ ├── ibm-4960_P100-1995.txt │ │ ├── ibm-4960_X100-1995.txt │ │ ├── ibm-4961_P101-2000.txt │ │ ├── ibm-4962_P101-2000.txt │ │ ├── ibm-4963_P101-2000.txt │ │ ├── ibm-4971_P100-1999.txt │ │ ├── ibm-500_P100-1999.txt │ │ ├── ibm-5012_P100-1999.txt │ │ ├── ibm-5026_P120-1999.txt │ │ ├── ibm-5026_X120-1999.txt │ │ ├── ibm-5035_P120-1999.txt │ │ ├── ibm-5035_P120_P12A-2005_U2.txt │ │ ├── ibm-5035_X120-1999.txt │ │ ├── ibm-5039_P110-1996.txt │ │ ├── ibm-5039_P11A-1998.txt │ │ ├── ibm-5048_P100-1995.txt │ │ ├── ibm-5049_P100-1995.txt │ │ ├── ibm-5050_P120-1999.txt │ │ ├── ibm-5050_P12A-1999.txt │ │ ├── ibm-5067_P100-1995.txt │ │ ├── ibm-5104_X110-1999.txt │ │ ├── ibm-5123_P100-1999.txt │ │ ├── ibm-5142_P100-1995.txt │ │ ├── ibm-5210_P100-1999.txt │ │ ├── ibm-5233_P100-2011.txt │ │ ├── ibm-5346_P100-1998.txt │ │ ├── ibm-5347_P100-1998.txt │ │ ├── ibm-5348_P100-1997.txt │ │ ├── ibm-5349_P100-1998.txt │ │ ├── ibm-5350_P100-1998.txt │ │ ├── ibm-5351_P100-1998.txt │ │ ├── ibm-5352_P100-1998.txt │ │ ├── ibm-5353_P100-1998.txt │ │ ├── ibm-5354_P100-1998.txt │ │ ├── ibm-53685_P101-2000.txt │ │ ├── ibm-54191_P100-2006.txt │ │ ├── ibm-5470_P100-2005.txt │ │ ├── ibm-5470_P100_P100-2005_MS.txt │ │ ├── ibm-5471_P100-2006.txt │ │ ├── ibm-5471_P100-2007.txt │ │ ├── ibm-5473_P100-2006.txt │ │ ├── ibm-5478_P100-1995.txt │ │ ├── ibm-5486_P100-1999.txt │ │ ├── ibm-5487_P100-2001.txt │ │ ├── ibm-5488_P100-2001.txt │ │ ├── ibm-5495_P100-1999.txt │ │ ├── ibm-62383_P100-2007.txt │ │ ├── ibm-720_P100-1997.txt │ │ ├── ibm-737_P100-1997.txt │ │ ├── ibm-775_P100-1996.txt │ │ ├── ibm-803_P100-1999.txt │ │ ├── ibm-806_P100-1998.txt │ │ ├── ibm-808_P100-1999.txt │ │ ├── ibm-813_P100-1995.txt │ │ ├── ibm-819_P100-1999.txt │ │ ├── ibm-833_P100-1995.txt │ │ ├── ibm-834_P100-1995.txt │ │ ├── ibm-834_X100-1995.txt │ │ ├── ibm-835_P100-1995.txt │ │ ├── ibm-835_X100-1995.txt │ │ ├── ibm-836_P100-1995.txt │ │ ├── ibm-837_P100-1995.txt │ │ ├── ibm-837_P100-2011.txt │ │ ├── ibm-837_X100-1995.txt │ │ ├── ibm-838_P100-1995.txt │ │ ├── ibm-8482_P100-1999.txt │ │ ├── ibm-848_P100-1999.txt │ │ ├── ibm-849_P100-1999.txt │ │ ├── ibm-850_P100-1999.txt │ │ ├── ibm-851_P100-1995.txt │ │ ├── ibm-852_P100-1999.txt │ │ ├── ibm-855_P100-1995.txt │ │ ├── ibm-856_P100-1995.txt │ │ ├── ibm-857_P100-1995.txt │ │ ├── ibm-858_P100-1997.txt │ │ ├── ibm-859_P100-1999.txt │ │ ├── ibm-860_P100-1995.txt │ │ ├── ibm-8612_P100-1995.txt │ │ ├── ibm-8612_X110-1995.txt │ │ ├── ibm-861_P100-1995.txt │ │ ├── ibm-862_P100-1995.txt │ │ ├── ibm-863_P100-1995.txt │ │ ├── ibm-864_X110-1999.txt │ │ ├── ibm-864_X120-2012.txt │ │ ├── ibm-865_P100-1995.txt │ │ ├── ibm-866_P100-1995.txt │ │ ├── ibm-867_P100-1998.txt │ │ ├── ibm-868_P100-1995.txt │ │ ├── ibm-868_X100-1995.txt │ │ ├── ibm-869_P100-1995.txt │ │ ├── ibm-870_P100-1999.txt │ │ ├── ibm-871_P100-1999.txt │ │ ├── ibm-872_P100-1999.txt │ │ ├── ibm-874_P100-1995.txt │ │ ├── ibm-875_P100-1995.txt │ │ ├── ibm-878_P100-1996.txt │ │ ├── ibm-880_P100-1995.txt │ │ ├── ibm-891_P100-1995.txt │ │ ├── ibm-895_P100-1995.txt │ │ ├── ibm-896_P100-1995.txt │ │ ├── ibm-897_P100-1995.txt │ │ ├── ibm-9005_X100-2005.txt │ │ ├── ibm-9005_X110-2007.txt │ │ ├── ibm-901_P100-1999.txt │ │ ├── ibm-9027_P100-1999.txt │ │ ├── ibm-9027_X100-1999.txt │ │ ├── ibm-902_P100-1999.txt │ │ ├── ibm-9030_P100-1995.txt │ │ ├── ibm-903_P100-1995.txt │ │ ├── ibm-9042_P101-2000.txt │ │ ├── ibm-9044_P100-1999.txt │ │ ├── ibm-9048_P100-1998.txt │ │ ├── ibm-9049_P100-1999.txt │ │ ├── ibm-904_P100-1995.txt │ │ ├── ibm-9056_P100-1995.txt │ │ ├── ibm-905_P100-1995.txt │ │ ├── ibm-9061_P100-1999.txt │ │ ├── ibm-9064_P101-2000.txt │ │ ├── ibm-9066_P100-1995.txt │ │ ├── ibm-9067_X100-2005.txt │ │ ├── ibm-912_P100-1999.txt │ │ ├── ibm-913_P100-2000.txt │ │ ├── ibm-9145_P110-1997.txt │ │ ├── ibm-9145_X110-1997.txt │ │ ├── ibm-914_P100-1995.txt │ │ ├── ibm-915_P100-1995.txt │ │ ├── ibm-916_P100-1995.txt │ │ ├── ibm-918_P100-1995.txt │ │ ├── ibm-918_X100-1995.txt │ │ ├── ibm-920_P100-1995.txt │ │ ├── ibm-921_P100-1995.txt │ │ ├── ibm-922_P100-1999.txt │ │ ├── ibm-9238_X110-1999.txt │ │ ├── ibm-923_P100-1998.txt │ │ ├── ibm-924_P100-1998.txt │ │ ├── ibm-926_P100-2000.txt │ │ ├── ibm-927_P100-1995.txt │ │ ├── ibm-927_X100-1995.txt │ │ ├── ibm-928_P100-1995.txt │ │ ├── ibm-9306_P101-2000.txt │ │ ├── ibm-930_P120-1999.txt │ │ ├── ibm-930_P120_P12A-2006_U2.txt │ │ ├── ibm-930_X120-1999.txt │ │ ├── ibm-931_P120-1999.txt │ │ ├── ibm-931_X120-1999.txt │ │ ├── ibm-932_P120-1999.txt │ │ ├── ibm-932_P12A-1999.txt │ │ ├── ibm-932_P12A_P12A-2000_U2.txt │ │ ├── ibm-933_P110-1999.txt │ │ ├── ibm-933_X110-1999.txt │ │ ├── ibm-935_P110-1999.txt │ │ ├── ibm-935_X110-1999.txt │ │ ├── ibm-937_P110-1999.txt │ │ ├── ibm-937_X110-1999.txt │ │ ├── ibm-939_P120-1999.txt │ │ ├── ibm-939_P120_P12A-2005_U2.txt │ │ ├── ibm-939_X120-1999.txt │ │ ├── ibm-941_P120-1996.txt │ │ ├── ibm-941_P12A-1996.txt │ │ ├── ibm-941_P130-2001.txt │ │ ├── ibm-941_P13A-2001.txt │ │ ├── ibm-941_X110-1996.txt │ │ ├── ibm-941_X11A-1996.txt │ │ ├── ibm-942_P120-1999.txt │ │ ├── ibm-942_P12A-1999.txt │ │ ├── ibm-942_P12A_P12A-2000_U2.txt │ │ ├── ibm-943_P130-1999.txt │ │ ├── ibm-943_P14A-1999.txt │ │ ├── ibm-943_P15A-2003.txt │ │ ├── ibm-9444_P100-2001.txt │ │ ├── ibm-9444_P100-2005.txt │ │ ├── ibm-9444_P100_P100-2005_MS.txt │ │ ├── ibm-9447_P100-2002.txt │ │ ├── ibm-9448_X100-2005.txt │ │ ├── ibm-9449_P100-2002.txt │ │ ├── ibm-944_P100-1995.txt │ │ ├── ibm-944_X100-1995.txt │ │ ├── ibm-946_P100-1995.txt │ │ ├── ibm-947_P100-1995.txt │ │ ├── ibm-947_X100-1995.txt │ │ ├── ibm-948_P110-1999.txt │ │ ├── ibm-948_X110-1999.txt │ │ ├── ibm-949_P110-1999.txt │ │ ├── ibm-949_P11A-1999.txt │ │ ├── ibm-949_X110-1999.txt │ │ ├── ibm-950_P110-1999.txt │ │ ├── ibm-950_X110-1999.txt │ │ ├── ibm-951_P100-1995.txt │ │ ├── ibm-951_X100-1995.txt │ │ ├── ibm-952_P110-1997.txt │ │ ├── ibm-953_P100-2000.txt │ │ ├── ibm-954_P101-2007.txt │ │ ├── ibm-955_P110-1997.txt │ │ ├── ibm-9577_P100-2001.txt │ │ ├── ibm-9580_P110-1999.txt │ │ ├── ibm-960_P100-2000.txt │ │ ├── ibm-963_P100-1995.txt │ │ ├── ibm-964_P110-1999.txt │ │ ├── ibm-964_X110-1999.txt │ │ ├── ibm-970_P110-1999.txt │ │ ├── ibm-970_P110_P110-2006_U2.txt │ │ ├── ibm-971_P100-1995.txt │ │ ├── iso-8859_1-1998.txt │ │ ├── iso-8859_10-1998.txt │ │ ├── iso-8859_11-2001.txt │ │ ├── iso-8859_13-1998.txt │ │ ├── iso-8859_14-1998.txt │ │ ├── iso-8859_15-1999.txt │ │ ├── iso-8859_16-2001.txt │ │ ├── iso-8859_2-1999.txt │ │ ├── iso-8859_3-1999.txt │ │ ├── iso-8859_4-1998.txt │ │ ├── iso-8859_5-1999.txt │ │ ├── iso-8859_6-1999.txt │ │ ├── iso-8859_7-1987.txt │ │ ├── iso-8859_7-2003.txt │ │ ├── iso-8859_8-1999.txt │ │ ├── iso-8859_9-1999.txt │ │ ├── java-ASCII-1.3_P.txt │ │ ├── java-Big5-1.3_P.txt │ │ ├── java-Cp037-1.3_P.txt │ │ ├── java-Cp1006-1.3_P.txt │ │ ├── java-Cp1025-1.3_P.txt │ │ ├── java-Cp1026-1.3_P.txt │ │ ├── java-Cp1097-1.3_P.txt │ │ ├── java-Cp1098-1.3_P.txt │ │ ├── java-Cp1112-1.3_P.txt │ │ ├── java-Cp1122-1.3_P.txt │ │ ├── java-Cp1123-1.3_P.txt │ │ ├── java-Cp1124-1.3_P.txt │ │ ├── java-Cp1250-1.3_P.txt │ │ ├── java-Cp1251-1.3_P.txt │ │ ├── java-Cp1252-1.3_P.txt │ │ ├── java-Cp1253-1.3_P.txt │ │ ├── java-Cp1254-1.3_P.txt │ │ ├── java-Cp1255-1.3_P.txt │ │ ├── java-Cp1256-1.3_P.txt │ │ ├── java-Cp1257-1.3_P.txt │ │ ├── java-Cp1258-1.3_P.txt │ │ ├── java-Cp1381-1.3_P.txt │ │ ├── java-Cp1383-1.3_P.txt │ │ ├── java-Cp1390A-1.6_P.txt │ │ ├── java-Cp1399A-1.6_P.txt │ │ ├── java-Cp273-1.3_P.txt │ │ ├── java-Cp277-1.3_P.txt │ │ ├── java-Cp278-1.3_P.txt │ │ ├── java-Cp280-1.3_P.txt │ │ ├── java-Cp284-1.3_P.txt │ │ ├── java-Cp285-1.3_P.txt │ │ ├── java-Cp297-1.3_P.txt │ │ ├── java-Cp33722-1.3_P.txt │ │ ├── java-Cp420-1.3_P.txt │ │ ├── java-Cp420s-1.6_P.txt │ │ ├── java-Cp424-1.3_P.txt │ │ ├── java-Cp437-1.3_P.txt │ │ ├── java-Cp500-1.3_P.txt │ │ ├── java-Cp737-1.3_P.txt │ │ ├── java-Cp775-1.3_P.txt │ │ ├── java-Cp838-1.3_P.txt │ │ ├── java-Cp850-1.3_P.txt │ │ ├── java-Cp852-1.3_P.txt │ │ ├── java-Cp855-1.3_P.txt │ │ ├── java-Cp856-1.3_P.txt │ │ ├── java-Cp857-1.3_P.txt │ │ ├── java-Cp860-1.3_P.txt │ │ ├── java-Cp861-1.3_P.txt │ │ ├── java-Cp862-1.3_P.txt │ │ ├── java-Cp863-1.3_P.txt │ │ ├── java-Cp864-1.3_P.txt │ │ ├── java-Cp865-1.3_P.txt │ │ ├── java-Cp866-1.3_P.txt │ │ ├── java-Cp868-1.3_P.txt │ │ ├── java-Cp869-1.3_P.txt │ │ ├── java-Cp870-1.3_P.txt │ │ ├── java-Cp871-1.3_P.txt │ │ ├── java-Cp874-1.3_P.txt │ │ ├── java-Cp875-1.3_P.txt │ │ ├── java-Cp918-1.3_P.txt │ │ ├── java-Cp921-1.3_P.txt │ │ ├── java-Cp922-1.3_P.txt │ │ ├── java-Cp930-1.3_P.txt │ │ ├── java-Cp933-1.3_P.txt │ │ ├── java-Cp935-1.3_P.txt │ │ ├── java-Cp937-1.3_P.txt │ │ ├── java-Cp939-1.3_P.txt │ │ ├── java-Cp942-1.3_P.txt │ │ ├── java-Cp942C-1.3_P.txt │ │ ├── java-Cp943-1.2.2.txt │ │ ├── java-Cp943C-1.3_P.txt │ │ ├── java-Cp948-1.3_P.txt │ │ ├── java-Cp949-1.3_P.txt │ │ ├── java-Cp949C-1.3_P.txt │ │ ├── java-Cp950-1.3_P.txt │ │ ├── java-Cp964-1.3_P.txt │ │ ├── java-Cp970-1.3_P.txt │ │ ├── java-EUC_CN-1.3_P.txt │ │ ├── java-EUC_JP-1.3_P.txt │ │ ├── java-EUC_KR-1.3_P.txt │ │ ├── java-EUC_TW-1.3_P.txt │ │ ├── java-ISO2022JP-1.3_P.txt │ │ ├── java-ISO2022KR-1.3_P.txt │ │ ├── java-ISO8859_1-1.3_P.txt │ │ ├── java-ISO8859_13-1.3_P.txt │ │ ├── java-ISO8859_2-1.3_P.txt │ │ ├── java-ISO8859_3-1.3_P.txt │ │ ├── java-ISO8859_4-1.3_P.txt │ │ ├── java-ISO8859_5-1.3_P.txt │ │ ├── java-ISO8859_6-1.3_P.txt │ │ ├── java-ISO8859_7-1.3_P.txt │ │ ├── java-ISO8859_8-1.3_P.txt │ │ ├── java-ISO8859_9-1.3_P.txt │ │ ├── java-Johab-1.3_P.txt │ │ ├── java-KOI8_R-1.3_P.txt │ │ ├── java-MS874-1.3_P.txt │ │ ├── java-MS932-1.3_P.txt │ │ ├── java-MS949-1.3_P.txt │ │ ├── java-SJIS-1.3_P.txt │ │ ├── java-TIS620-1.3_P.txt │ │ ├── java-euc_jp_linux-1.6_P.txt │ │ ├── java-sjis_0213-1.6_P.txt │ │ ├── macos-0_1-10.2.txt │ │ ├── macos-0_2-10.2.txt │ │ ├── macos-1024-10.2.txt │ │ ├── macos-1040-10.2.txt │ │ ├── macos-1049-10.2.txt │ │ ├── macos-1057-10.2.txt │ │ ├── macos-1059-10.2.txt │ │ ├── macos-1280-10.2.txt │ │ ├── macos-1281-10.2.txt │ │ ├── macos-1282-10.2.txt │ │ ├── macos-1283-10.2.txt │ │ ├── macos-1284-10.2.txt │ │ ├── macos-1285-10.2.txt │ │ ├── macos-1286-10.2.txt │ │ ├── macos-1287-10.2.txt │ │ ├── macos-1288-10.2.txt │ │ ├── macos-1536-10.2.txt │ │ ├── macos-21-10.5.txt │ │ ├── macos-2562-10.2.txt │ │ ├── macos-2563-10.2.txt │ │ ├── macos-2566-10.2.txt │ │ ├── macos-2817-10.2.txt │ │ ├── macos-29-10.2.txt │ │ ├── macos-3074-10.2.txt │ │ ├── macos-33-10.5.txt │ │ ├── macos-34-10.2.txt │ │ ├── macos-35-10.2.txt │ │ ├── macos-36_1-10.2.txt │ │ ├── macos-36_2-10.2.txt │ │ ├── macos-37_2-10.2.txt │ │ ├── macos-37_3-10.2.txt │ │ ├── macos-37_4-10.2.txt │ │ ├── macos-37_5-10.2.txt │ │ ├── macos-38_1-10.2.txt │ │ ├── macos-38_2-10.2.txt │ │ ├── macos-513-10.2.txt │ │ ├── macos-514-10.2.txt │ │ ├── macos-515-10.2.txt │ │ ├── macos-516-10.2.txt │ │ ├── macos-517-10.2.txt │ │ ├── macos-518-10.2.txt │ │ ├── macos-519-10.2.txt │ │ ├── macos-520-10.2.txt │ │ ├── macos-521-10.2.txt │ │ ├── macos-527-10.2.txt │ │ ├── macos-6-10.2.txt │ │ ├── macos-6_2-10.4.txt │ │ ├── macos-7_1-10.2.txt │ │ ├── macos-7_2-10.2.txt │ │ ├── macos-7_3-10.2.txt │ │ ├── osd-EBCDIC-DF03-IRV.txt │ │ ├── osd-EBCDIC-DF04-1.txt │ │ ├── osd-EBCDIC-DF04-15.txt │ │ ├── solaris-5601-2.7.txt │ │ ├── solaris-646-2.7.txt │ │ ├── solaris-8859_1-2.7.txt │ │ ├── solaris-8859_10-2.7.txt │ │ ├── solaris-8859_15-2.7.txt │ │ ├── solaris-8859_2-2.7.txt │ │ ├── solaris-8859_3-2.7.txt │ │ ├── solaris-8859_4-2.7.txt │ │ ├── solaris-8859_5-2.7.txt │ │ ├── solaris-8859_6-2.7.txt │ │ ├── solaris-8859_7-2.7.txt │ │ ├── solaris-8859_8-2.7.txt │ │ ├── solaris-8859_9-2.7.txt │ │ ├── solaris-EUC_KR-2.7.txt │ │ ├── solaris-KOI8_R-2.7.txt │ │ ├── solaris-PCK-2.7.txt │ │ ├── solaris-eucJP-2.7.txt │ │ ├── solaris-eucTH-2.7.txt │ │ ├── solaris-zh_CN.euc-2.7.txt │ │ ├── solaris-zh_CN.gbk-2.7.txt │ │ ├── solaris-zh_CN_cp935-2.7.txt │ │ ├── solaris-zh_HK.hkscs-5.9.txt │ │ ├── solaris-zh_TW_big5-2.7.txt │ │ ├── solaris-zh_TW_cp937-2.7.txt │ │ ├── solaris-zh_TW_euc-2.7.txt │ │ ├── windows-10000-2000.txt │ │ ├── windows-10001-2000.txt │ │ ├── windows-10002-2000.txt │ │ ├── windows-10003-2000.txt │ │ ├── windows-10004-2000.txt │ │ ├── windows-10005-2000.txt │ │ ├── windows-10006-2000.txt │ │ ├── windows-10007-2000.txt │ │ ├── windows-10008-2000.txt │ │ ├── windows-10010-2000.txt │ │ ├── windows-10017-2000.txt │ │ ├── windows-10021-2000.txt │ │ ├── windows-10029-2000.txt │ │ ├── windows-10079-2000.txt │ │ ├── windows-10081-2000.txt │ │ ├── windows-10082-2000.txt │ │ ├── windows-1026-2000.txt │ │ ├── windows-1047-2000.txt │ │ ├── windows-1140-2000.txt │ │ ├── windows-1141-2000.txt │ │ ├── windows-1142-2000.txt │ │ ├── windows-1143-2000.txt │ │ ├── windows-1144-2000.txt │ │ ├── windows-1145-2000.txt │ │ ├── windows-1146-2000.txt │ │ ├── windows-1147-2000.txt │ │ ├── windows-1148-2000.txt │ │ ├── windows-1149-2000.txt │ │ ├── windows-1250-2000.txt │ │ ├── windows-1251-2000.txt │ │ ├── windows-1252-2000.txt │ │ ├── windows-1253-2000.txt │ │ ├── windows-1254-2000.txt │ │ ├── windows-1255-2000.txt │ │ ├── windows-1256-2000.txt │ │ ├── windows-1257-2000.txt │ │ ├── windows-1258-2000.txt │ │ ├── windows-1258_db-2013.txt │ │ ├── windows-1361-2000.txt │ │ ├── windows-20000-2000.txt │ │ ├── windows-20001-2000.txt │ │ ├── windows-20002-2000.txt │ │ ├── windows-20003-2000.txt │ │ ├── windows-20004-2000.txt │ │ ├── windows-20005-2000.txt │ │ ├── windows-20105-2000.txt │ │ ├── windows-20106-2000.txt │ │ ├── windows-20107-2000.txt │ │ ├── windows-20108-2000.txt │ │ ├── windows-20127-2000.txt │ │ ├── windows-20261-2000.txt │ │ ├── windows-20269-2000.txt │ │ ├── windows-20273-2000.txt │ │ ├── windows-20277-2000.txt │ │ ├── windows-20278-2000.txt │ │ ├── windows-20280-2000.txt │ │ ├── windows-20284-2000.txt │ │ ├── windows-20285-2000.txt │ │ ├── windows-20290-2000.txt │ │ ├── windows-20297-2000.txt │ │ ├── windows-20420-2000.txt │ │ ├── windows-20423-2000.txt │ │ ├── windows-20424-2000.txt │ │ ├── windows-20833-2000.txt │ │ ├── windows-20838-2000.txt │ │ ├── windows-20866-2000.txt │ │ ├── windows-20871-2000.txt │ │ ├── windows-20880-2000.txt │ │ ├── windows-20905-2000.txt │ │ ├── windows-20924-2000.txt │ │ ├── windows-20932-2000.txt │ │ ├── windows-20936-2000.txt │ │ ├── windows-20949-2000.txt │ │ ├── windows-21025-2000.txt │ │ ├── windows-21027-2000.txt │ │ ├── windows-21866-2000.txt │ │ ├── windows-28591-2000.txt │ │ ├── windows-28592-2000.txt │ │ ├── windows-28593-2000.txt │ │ ├── windows-28594-2000.txt │ │ ├── windows-28595-2000.txt │ │ ├── windows-28596-2000.txt │ │ ├── windows-28597-2000.txt │ │ ├── windows-28598-2000.txt │ │ ├── windows-28599-2000.txt │ │ ├── windows-28603-vista.txt │ │ ├── windows-28605-2000.txt │ │ ├── windows-37-2000.txt │ │ ├── windows-38598-2000.txt │ │ ├── windows-437-2000.txt │ │ ├── windows-500-2000.txt │ │ ├── windows-51932-2006.txt │ │ ├── windows-51936-2000.txt │ │ ├── windows-51949-2000.txt │ │ ├── windows-708-2000.txt │ │ ├── windows-720-2000.txt │ │ ├── windows-737-2000.txt │ │ ├── windows-775-2000.txt │ │ ├── windows-850-2000.txt │ │ ├── windows-852-2000.txt │ │ ├── windows-855-2000.txt │ │ ├── windows-857-2000.txt │ │ ├── windows-858-2000.txt │ │ ├── windows-860-2000.txt │ │ ├── windows-861-2000.txt │ │ ├── windows-862-2000.txt │ │ ├── windows-863-2000.txt │ │ ├── windows-864-2000.txt │ │ ├── windows-865-2000.txt │ │ ├── windows-866-2000.txt │ │ ├── windows-869-2000.txt │ │ ├── windows-870-2000.txt │ │ ├── windows-874-2000.txt │ │ ├── windows-875-2000.txt │ │ ├── windows-932-2000.txt │ │ ├── windows-936-2000.txt │ │ ├── windows-949-2000.txt │ │ ├── windows-950-2000.txt │ │ └── windows-950_hkscs-2001.txt │ ├── hashtable │ │ ├── hashtable.h │ │ ├── wrap_hashtable.c │ │ └── wrap_hashtable.h │ ├── libpawnc.c │ ├── libpawnc.def │ ├── libpawnc.def.borland │ ├── libpawnc.lbc │ ├── libpawnc.rc │ ├── lstring.c │ ├── lstring.h │ ├── memfile.c │ ├── memfile.h │ ├── pawncc.c │ ├── pawncc.def │ ├── pawncc.def.borland │ ├── pawndisasm.c │ ├── pawnruns.c │ ├── sc.h │ ├── sc1.c │ ├── sc2.c │ ├── sc3.c │ ├── sc4.c │ ├── sc5.c │ ├── sc6.c │ ├── sc7.c │ ├── sci18n.c │ ├── sclist.c │ ├── scmemfil.c │ ├── scstate.c │ ├── scstub.c │ ├── scvars.c │ ├── tests │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── __addressof.meta │ │ ├── __addressof.pwn │ │ ├── __emit.inc │ │ ├── __emit_p1.meta │ │ ├── __emit_p1.pwn │ │ ├── __emit_p2.meta │ │ ├── __emit_p2.pwn │ │ ├── __emit_p3.meta │ │ ├── __emit_p3.pwn │ │ ├── __emit_p4.meta │ │ ├── __emit_p4.pwn │ │ ├── __emit_p5.meta │ │ ├── __emit_p5.pwn │ │ ├── __emit_p6.meta │ │ ├── __emit_p6.pwn │ │ ├── __emit_p7.meta │ │ ├── __emit_p7.pwn │ │ ├── __emit_pcode_check.meta │ │ ├── __emit_pcode_check.pwn │ │ ├── __nameof_1.meta │ │ ├── __nameof_1.pwn │ │ ├── __nameof_2.meta │ │ ├── __nameof_2.pwn │ │ ├── __pragma.meta │ │ ├── __pragma.pwn │ │ ├── __pragma_pcode.meta │ │ ├── __pragma_pcode.pwn │ │ ├── __static_assert.meta │ │ ├── __static_assert.pwn │ │ ├── __timestamp.meta │ │ ├── __timestamp.pwn │ │ ├── anonymous_enum_tags.meta │ │ ├── anonymous_enum_tags.pwn │ │ ├── array_defvalue.meta │ │ ├── array_defvalue.pwn │ │ ├── const_array_args_and_literals_gh_276.meta │ │ ├── const_array_args_and_literals_gh_276.pwn │ │ ├── const_static.inc │ │ ├── const_static.meta │ │ ├── const_static.pwn │ │ ├── constexpr_result_prop_gh_308.meta │ │ ├── constexpr_result_prop_gh_308.pwn │ │ ├── destructor_not_impl_gh_310.meta │ │ ├── destructor_not_impl_gh_310.pwn │ │ ├── empty_symbol_name_indeterminate_array_size_gh_338.meta │ │ ├── empty_symbol_name_indeterminate_array_size_gh_338.pwn │ │ ├── empty_warning_crash_gh_339.meta │ │ ├── empty_warning_crash_gh_339.pwn │ │ ├── enum_increment.meta │ │ ├── enum_increment.pwn │ │ ├── error_013_1.meta │ │ ├── error_013_1.pwn │ │ ├── error_013_2.meta │ │ ├── error_013_2.pwn │ │ ├── error_013_3.meta │ │ ├── error_013_3.pwn │ │ ├── error_013_4.meta │ │ ├── error_013_4.pwn │ │ ├── error_047.meta │ │ ├── error_047.pwn │ │ ├── error_094.meta │ │ ├── error_094.pwn │ │ ├── gh_206_multiple_inputs.meta │ │ ├── gh_206_multiple_inputs.pwn │ │ ├── gh_206_multiple_inputs_2.pwn │ │ ├── gh_217.meta │ │ ├── gh_217.pwn │ │ ├── gh_258.meta │ │ ├── gh_258.pwn │ │ ├── gh_283.meta │ │ ├── gh_283.pwn │ │ ├── gh_353_symbol_suggestions.inc │ │ ├── gh_353_symbol_suggestions.meta │ │ ├── gh_353_symbol_suggestions.pwn │ │ ├── gh_373.meta │ │ ├── gh_373.pwn │ │ ├── gh_398.inc │ │ ├── gh_398.meta │ │ ├── gh_398.pwn │ │ ├── gh_403.meta │ │ ├── gh_403.pwn │ │ ├── gh_436_local_var_self_init.meta │ │ ├── gh_436_local_var_self_init.pwn │ │ ├── gh_464.meta │ │ ├── gh_464.pwn │ │ ├── gh_464_pcode.meta │ │ ├── gh_464_pcode.pwn │ │ ├── gh_466.meta │ │ ├── gh_466.pwn │ │ ├── gh_500.meta │ │ ├── gh_500.pwn │ │ ├── gh_514.meta │ │ ├── gh_514.pwn │ │ ├── gh_517.meta │ │ ├── gh_517.pwn │ │ ├── gh_517_pcode.meta │ │ ├── gh_517_pcode.pwn │ │ ├── gh_522.meta │ │ ├── gh_522.pwn │ │ ├── gh_525.meta │ │ ├── gh_525.pwn │ │ ├── gh_531.meta │ │ ├── gh_531.pwn │ │ ├── gh_541.meta │ │ ├── gh_541.pwn │ │ ├── gh_542.meta │ │ ├── gh_542.pwn │ │ ├── gh_553.meta │ │ ├── gh_553.pwn │ │ ├── gh_557.meta │ │ ├── gh_557.pwn │ │ ├── gh_567.meta │ │ ├── gh_567.pwn │ │ ├── gh_574.meta │ │ ├── gh_574.pwn │ │ ├── gh_594.meta │ │ ├── gh_594.pwn │ │ ├── gh_597.meta │ │ ├── gh_597.pwn │ │ ├── gh_603.meta │ │ ├── gh_603.pwn │ │ ├── gh_642.meta │ │ ├── gh_642.pwn │ │ ├── gh_668.meta │ │ ├── gh_668.pwn │ │ ├── gh_685.meta │ │ ├── gh_685.pwn │ │ ├── gh_96.meta │ │ ├── gh_96.pwn │ │ ├── ignore_unknown_directives_gh_426.meta │ │ ├── ignore_unknown_directives_gh_426.pwn │ │ ├── md_array_crash_gh_220.meta │ │ ├── md_array_crash_gh_220.pwn │ │ ├── md_array_size_chk_gh_314.meta │ │ ├── md_array_size_chk_gh_314.pwn │ │ ├── meaningless_class_specifiers_gh_172.meta │ │ ├── meaningless_class_specifiers_gh_172.pwn │ │ ├── multiline_string_sizes.meta │ │ ├── multiline_string_sizes.pwn │ │ ├── multiline_strings.meta │ │ ├── multiline_strings.pwn │ │ ├── pcode_test_example.meta │ │ ├── pcode_test_example.pwn │ │ ├── pragma_warning_1.meta │ │ ├── pragma_warning_1.pwn │ │ ├── pragma_warning_2.meta │ │ ├── pragma_warning_2.pwn │ │ ├── pragma_warning_3.meta │ │ ├── pragma_warning_3.pwn │ │ ├── raw_error.meta │ │ ├── raw_error.pwn │ │ ├── reset_errline_gh_230.meta │ │ ├── reset_errline_gh_230.pwn │ │ ├── run_tests.py │ │ ├── runtime_test_example.meta │ │ ├── runtime_test_example.pwn │ │ ├── share_arg_flags_fstates_gh_371.meta │ │ ├── share_arg_flags_fstates_gh_371.pwn │ │ ├── switch-case-tag-control.meta │ │ ├── switch-case-tag-control.pwn │ │ ├── tagof_tag_argdefault.meta │ │ ├── tagof_tag_argdefault.pwn │ │ ├── too_many_args_crash_gh_298.meta │ │ ├── too_many_args_crash_gh_298.pwn │ │ ├── unreachable_code.meta │ │ ├── unreachable_code.pwn │ │ ├── unused_symbol_line_gh_252.meta │ │ ├── unused_symbol_line_gh_252.pwn │ │ ├── warning_231.meta │ │ ├── warning_231.pwn │ │ ├── warning_240.meta │ │ ├── warning_240.pwn │ │ ├── warning_241_242.meta │ │ ├── warning_241_242.pwn │ │ ├── warning_243.meta │ │ ├── warning_243.pwn │ │ ├── warning_244.meta │ │ ├── warning_244.pwn │ │ ├── warning_245.meta │ │ ├── warning_245.pwn │ │ ├── warning_246.meta │ │ ├── warning_246.pwn │ │ ├── warning_247.meta │ │ ├── warning_247.pwn │ │ ├── warning_247_ovl.meta │ │ ├── warning_247_ovl.pwn │ │ ├── warning_248.meta │ │ ├── warning_248.pwn │ │ ├── warning_250_251.meta │ │ ├── warning_250_251.pwn │ │ ├── warning_252.meta │ │ └── warning_252.pwn │ └── version.h.in └── linux │ ├── binreloc.c │ ├── binreloc.h │ ├── getch.c │ ├── getch.h │ └── sclinux.h └── xml ├── pawndoc.css └── pawndoc.xsl /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/appveyor.yml -------------------------------------------------------------------------------- /doc/pawn-imp.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/doc/pawn-imp.pdf -------------------------------------------------------------------------------- /doc/pawn-lang.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/doc/pawn-lang.pdf -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/docker/build.sh -------------------------------------------------------------------------------- /docker/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/docker/docker-entrypoint.sh -------------------------------------------------------------------------------- /examples/argument.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/examples/argument.p -------------------------------------------------------------------------------- /examples/c2f.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/examples/c2f.p -------------------------------------------------------------------------------- /examples/capt.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/examples/capt.p -------------------------------------------------------------------------------- /examples/cards.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/examples/cards.p -------------------------------------------------------------------------------- /examples/chat.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/examples/chat.p -------------------------------------------------------------------------------- /examples/comment.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/examples/comment.p -------------------------------------------------------------------------------- /examples/faculty.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/examples/faculty.p -------------------------------------------------------------------------------- /examples/fib.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/examples/fib.p -------------------------------------------------------------------------------- /examples/gcd.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/examples/gcd.p -------------------------------------------------------------------------------- /examples/gtkcalc.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/examples/gtkcalc.p -------------------------------------------------------------------------------- /examples/hanoi.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/examples/hanoi.p -------------------------------------------------------------------------------- /examples/hello.p: -------------------------------------------------------------------------------- 1 | main() 2 | printf "Hello world\n" 3 | -------------------------------------------------------------------------------- /examples/hello2.p: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | main() 4 | { 5 | printf("Hello world\n"); 6 | } -------------------------------------------------------------------------------- /examples/julian.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/examples/julian.p -------------------------------------------------------------------------------- /examples/ones.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/examples/ones.p -------------------------------------------------------------------------------- /examples/queue.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/examples/queue.p -------------------------------------------------------------------------------- /examples/quine.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/examples/quine.p -------------------------------------------------------------------------------- /examples/randlist.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/examples/randlist.p -------------------------------------------------------------------------------- /examples/readfile.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/examples/readfile.p -------------------------------------------------------------------------------- /examples/rot13.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/examples/rot13.p -------------------------------------------------------------------------------- /examples/rpn.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/examples/rpn.p -------------------------------------------------------------------------------- /examples/rpnparse.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/examples/rpnparse.inc -------------------------------------------------------------------------------- /examples/set.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/examples/set.p -------------------------------------------------------------------------------- /examples/sieve.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/examples/sieve.p -------------------------------------------------------------------------------- /examples/stack.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/examples/stack.inc -------------------------------------------------------------------------------- /examples/strtok.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/examples/strtok.inc -------------------------------------------------------------------------------- /examples/traffic.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/examples/traffic.p -------------------------------------------------------------------------------- /examples/traffic2.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/examples/traffic2.p -------------------------------------------------------------------------------- /examples/turtle.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/examples/turtle.p -------------------------------------------------------------------------------- /examples/wcount.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/examples/wcount.p -------------------------------------------------------------------------------- /examples/weekday.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/examples/weekday.p -------------------------------------------------------------------------------- /history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/history.txt -------------------------------------------------------------------------------- /include/amxdll.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/include/amxdll.inc -------------------------------------------------------------------------------- /include/args.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/include/args.inc -------------------------------------------------------------------------------- /include/console.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/include/console.inc -------------------------------------------------------------------------------- /include/core.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/include/core.inc -------------------------------------------------------------------------------- /include/datagram.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/include/datagram.inc -------------------------------------------------------------------------------- /include/default.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/include/default.inc -------------------------------------------------------------------------------- /include/file.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/include/file.inc -------------------------------------------------------------------------------- /include/fixed.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/include/fixed.inc -------------------------------------------------------------------------------- /include/float.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/include/float.inc -------------------------------------------------------------------------------- /include/process.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/include/process.inc -------------------------------------------------------------------------------- /include/rational.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/include/rational.inc -------------------------------------------------------------------------------- /include/string.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/include/string.inc -------------------------------------------------------------------------------- /include/time.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/include/time.inc -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/license.txt -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/readme.md -------------------------------------------------------------------------------- /readme_compuphase.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/readme_compuphase.txt -------------------------------------------------------------------------------- /source/amx/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/amx/CMakeLists.txt -------------------------------------------------------------------------------- /source/amx/amx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/amx/amx.c -------------------------------------------------------------------------------- /source/amx/amx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/amx/amx.h -------------------------------------------------------------------------------- /source/amx/amxDGram.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/amx/amxDGram.def -------------------------------------------------------------------------------- /source/amx/amxDGram.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/amx/amxDGram.rc -------------------------------------------------------------------------------- /source/amx/amxFile.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/amx/amxFile.rc -------------------------------------------------------------------------------- /source/amx/amxFixed.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/amx/amxFixed.def -------------------------------------------------------------------------------- /source/amx/amxFixed.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/amx/amxFixed.rc -------------------------------------------------------------------------------- /source/amx/amxFloat.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/amx/amxFloat.def -------------------------------------------------------------------------------- /source/amx/amxFloat.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/amx/amxFloat.rc -------------------------------------------------------------------------------- /source/amx/amxProcess.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/amx/amxProcess.def -------------------------------------------------------------------------------- /source/amx/amxProcess.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/amx/amxProcess.rc -------------------------------------------------------------------------------- /source/amx/amxargs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/amx/amxargs.c -------------------------------------------------------------------------------- /source/amx/amxargs.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/amx/amxargs.def -------------------------------------------------------------------------------- /source/amx/amxargs.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/amx/amxargs.rc -------------------------------------------------------------------------------- /source/amx/amxaux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/amx/amxaux.c -------------------------------------------------------------------------------- /source/amx/amxaux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/amx/amxaux.h -------------------------------------------------------------------------------- /source/amx/amxcons.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/amx/amxcons.c -------------------------------------------------------------------------------- /source/amx/amxcons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/amx/amxcons.h -------------------------------------------------------------------------------- /source/amx/amxcore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/amx/amxcore.c -------------------------------------------------------------------------------- /source/amx/amxdbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/amx/amxdbg.c -------------------------------------------------------------------------------- /source/amx/amxdbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/amx/amxdbg.h -------------------------------------------------------------------------------- /source/amx/amxdef.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/amx/amxdef.asm -------------------------------------------------------------------------------- /source/amx/amxdefn.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/amx/amxdefn.asm -------------------------------------------------------------------------------- /source/amx/amxdgram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/amx/amxdgram.c -------------------------------------------------------------------------------- /source/amx/amxexec.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/amx/amxexec.asm -------------------------------------------------------------------------------- /source/amx/amxexecn.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/amx/amxexecn.asm -------------------------------------------------------------------------------- /source/amx/amxfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/amx/amxfile.c -------------------------------------------------------------------------------- /source/amx/amxfile.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/amx/amxfile.def -------------------------------------------------------------------------------- /source/amx/amxfloat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/amx/amxfloat.c -------------------------------------------------------------------------------- /source/amx/amxgc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/amx/amxgc.c -------------------------------------------------------------------------------- /source/amx/amxgc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/amx/amxgc.h -------------------------------------------------------------------------------- /source/amx/amxjitr.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/amx/amxjitr.asm -------------------------------------------------------------------------------- /source/amx/amxjits.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/amx/amxjits.asm -------------------------------------------------------------------------------- /source/amx/amxjitsn.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/amx/amxjitsn.asm -------------------------------------------------------------------------------- /source/amx/amxprocess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/amx/amxprocess.c -------------------------------------------------------------------------------- /source/amx/amxstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/amx/amxstring.c -------------------------------------------------------------------------------- /source/amx/amxstring.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/amx/amxstring.def -------------------------------------------------------------------------------- /source/amx/amxstring.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/amx/amxstring.rc -------------------------------------------------------------------------------- /source/amx/amxtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/amx/amxtime.c -------------------------------------------------------------------------------- /source/amx/amxtime.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/amx/amxtime.def -------------------------------------------------------------------------------- /source/amx/amxtime.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/amx/amxtime.rc -------------------------------------------------------------------------------- /source/amx/dllmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/amx/dllmain.c -------------------------------------------------------------------------------- /source/amx/examples/logfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/amx/examples/logfile.cpp -------------------------------------------------------------------------------- /source/amx/examples/power.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/amx/examples/power.c -------------------------------------------------------------------------------- /source/amx/fixed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/amx/fixed.c -------------------------------------------------------------------------------- /source/amx/fpattern.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/amx/fpattern.c -------------------------------------------------------------------------------- /source/amx/fpattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/amx/fpattern.h -------------------------------------------------------------------------------- /source/amx/minGlue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/amx/minGlue.h -------------------------------------------------------------------------------- /source/amx/minIni.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/amx/minIni.c -------------------------------------------------------------------------------- /source/amx/minIni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/amx/minIni.h -------------------------------------------------------------------------------- /source/amx/obj/amxexecc.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/amx/obj/amxexecc.obj -------------------------------------------------------------------------------- /source/amx/obj/amxexecs.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/amx/obj/amxexecs.obj -------------------------------------------------------------------------------- /source/amx/obj/amxjitr.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/amx/obj/amxjitr.obj -------------------------------------------------------------------------------- /source/amx/obj/amxjits.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/amx/obj/amxjits.obj -------------------------------------------------------------------------------- /source/amx/osdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/amx/osdefs.h -------------------------------------------------------------------------------- /source/amx/pawndbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/amx/pawndbg.c -------------------------------------------------------------------------------- /source/amx/pawnrun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/amx/pawnrun.c -------------------------------------------------------------------------------- /source/amx/pawnrun/prun1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/amx/pawnrun/prun1.c -------------------------------------------------------------------------------- /source/amx/pawnrun/prun2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/amx/pawnrun/prun2.c -------------------------------------------------------------------------------- /source/amx/pawnrun/prun3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/amx/pawnrun/prun3.c -------------------------------------------------------------------------------- /source/amx/pawnrun/prun4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/amx/pawnrun/prun4.c -------------------------------------------------------------------------------- /source/amx/pawnrun/prun5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/amx/pawnrun/prun5.c -------------------------------------------------------------------------------- /source/amx/pawnrun/prun_jit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/amx/pawnrun/prun_jit.c -------------------------------------------------------------------------------- /source/amx/pawnrun/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/amx/pawnrun/readme.txt -------------------------------------------------------------------------------- /source/amx/term_ga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/amx/term_ga.c -------------------------------------------------------------------------------- /source/amx/term_ga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/amx/term_ga.h -------------------------------------------------------------------------------- /source/amx/termwin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/amx/termwin.c -------------------------------------------------------------------------------- /source/amx/termwin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/amx/termwin.h -------------------------------------------------------------------------------- /source/bin/pawn.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/bin/pawn.ico -------------------------------------------------------------------------------- /source/compiler/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/CMakeLists.txt -------------------------------------------------------------------------------- /source/compiler/codepage/10000.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/10000.txt -------------------------------------------------------------------------------- /source/compiler/codepage/10001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/10001.txt -------------------------------------------------------------------------------- /source/compiler/codepage/10002.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/10002.txt -------------------------------------------------------------------------------- /source/compiler/codepage/10003.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/10003.txt -------------------------------------------------------------------------------- /source/compiler/codepage/10004.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/10004.txt -------------------------------------------------------------------------------- /source/compiler/codepage/10005.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/10005.txt -------------------------------------------------------------------------------- /source/compiler/codepage/10006.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/10006.txt -------------------------------------------------------------------------------- /source/compiler/codepage/10007.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/10007.txt -------------------------------------------------------------------------------- /source/compiler/codepage/10008.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/10008.txt -------------------------------------------------------------------------------- /source/compiler/codepage/10010.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/10010.txt -------------------------------------------------------------------------------- /source/compiler/codepage/10017.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/10017.txt -------------------------------------------------------------------------------- /source/compiler/codepage/10021.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/10021.txt -------------------------------------------------------------------------------- /source/compiler/codepage/10029.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/10029.txt -------------------------------------------------------------------------------- /source/compiler/codepage/10079.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/10079.txt -------------------------------------------------------------------------------- /source/compiler/codepage/10081.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/10081.txt -------------------------------------------------------------------------------- /source/compiler/codepage/10082.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/10082.txt -------------------------------------------------------------------------------- /source/compiler/codepage/1026.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/1026.txt -------------------------------------------------------------------------------- /source/compiler/codepage/1047.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/1047.txt -------------------------------------------------------------------------------- /source/compiler/codepage/1140.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/1140.txt -------------------------------------------------------------------------------- /source/compiler/codepage/1141.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/1141.txt -------------------------------------------------------------------------------- /source/compiler/codepage/1142.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/1142.txt -------------------------------------------------------------------------------- /source/compiler/codepage/1143.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/1143.txt -------------------------------------------------------------------------------- /source/compiler/codepage/1144.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/1144.txt -------------------------------------------------------------------------------- /source/compiler/codepage/1145.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/1145.txt -------------------------------------------------------------------------------- /source/compiler/codepage/1146.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/1146.txt -------------------------------------------------------------------------------- /source/compiler/codepage/1147.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/1147.txt -------------------------------------------------------------------------------- /source/compiler/codepage/1148.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/1148.txt -------------------------------------------------------------------------------- /source/compiler/codepage/1149.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/1149.txt -------------------------------------------------------------------------------- /source/compiler/codepage/1250.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/1250.txt -------------------------------------------------------------------------------- /source/compiler/codepage/1251.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/1251.txt -------------------------------------------------------------------------------- /source/compiler/codepage/1252.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/1252.txt -------------------------------------------------------------------------------- /source/compiler/codepage/1253.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/1253.txt -------------------------------------------------------------------------------- /source/compiler/codepage/1254.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/1254.txt -------------------------------------------------------------------------------- /source/compiler/codepage/1255.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/1255.txt -------------------------------------------------------------------------------- /source/compiler/codepage/1256.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/1256.txt -------------------------------------------------------------------------------- /source/compiler/codepage/1257.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/1257.txt -------------------------------------------------------------------------------- /source/compiler/codepage/1258.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/1258.txt -------------------------------------------------------------------------------- /source/compiler/codepage/1361.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/1361.txt -------------------------------------------------------------------------------- /source/compiler/codepage/20000.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/20000.txt -------------------------------------------------------------------------------- /source/compiler/codepage/20001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/20001.txt -------------------------------------------------------------------------------- /source/compiler/codepage/20002.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/20002.txt -------------------------------------------------------------------------------- /source/compiler/codepage/20003.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/20003.txt -------------------------------------------------------------------------------- /source/compiler/codepage/20004.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/20004.txt -------------------------------------------------------------------------------- /source/compiler/codepage/20005.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/20005.txt -------------------------------------------------------------------------------- /source/compiler/codepage/20105.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/20105.txt -------------------------------------------------------------------------------- /source/compiler/codepage/20106.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/20106.txt -------------------------------------------------------------------------------- /source/compiler/codepage/20107.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/20107.txt -------------------------------------------------------------------------------- /source/compiler/codepage/20108.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/20108.txt -------------------------------------------------------------------------------- /source/compiler/codepage/20127.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/20127.txt -------------------------------------------------------------------------------- /source/compiler/codepage/20261.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/20261.txt -------------------------------------------------------------------------------- /source/compiler/codepage/20269.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/20269.txt -------------------------------------------------------------------------------- /source/compiler/codepage/20273.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/20273.txt -------------------------------------------------------------------------------- /source/compiler/codepage/20277.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/20277.txt -------------------------------------------------------------------------------- /source/compiler/codepage/20278.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/20278.txt -------------------------------------------------------------------------------- /source/compiler/codepage/20280.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/20280.txt -------------------------------------------------------------------------------- /source/compiler/codepage/20284.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/20284.txt -------------------------------------------------------------------------------- /source/compiler/codepage/20285.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/20285.txt -------------------------------------------------------------------------------- /source/compiler/codepage/20290.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/20290.txt -------------------------------------------------------------------------------- /source/compiler/codepage/20297.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/20297.txt -------------------------------------------------------------------------------- /source/compiler/codepage/20420.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/20420.txt -------------------------------------------------------------------------------- /source/compiler/codepage/20423.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/20423.txt -------------------------------------------------------------------------------- /source/compiler/codepage/20424.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/20424.txt -------------------------------------------------------------------------------- /source/compiler/codepage/20833.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/20833.txt -------------------------------------------------------------------------------- /source/compiler/codepage/20838.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/20838.txt -------------------------------------------------------------------------------- /source/compiler/codepage/20866.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/20866.txt -------------------------------------------------------------------------------- /source/compiler/codepage/20871.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/20871.txt -------------------------------------------------------------------------------- /source/compiler/codepage/20880.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/20880.txt -------------------------------------------------------------------------------- /source/compiler/codepage/20905.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/20905.txt -------------------------------------------------------------------------------- /source/compiler/codepage/20924.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/20924.txt -------------------------------------------------------------------------------- /source/compiler/codepage/20932.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/20932.txt -------------------------------------------------------------------------------- /source/compiler/codepage/20936.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/20936.txt -------------------------------------------------------------------------------- /source/compiler/codepage/20949.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/20949.txt -------------------------------------------------------------------------------- /source/compiler/codepage/21025.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/21025.txt -------------------------------------------------------------------------------- /source/compiler/codepage/21027.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/21027.txt -------------------------------------------------------------------------------- /source/compiler/codepage/21866.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/21866.txt -------------------------------------------------------------------------------- /source/compiler/codepage/28591.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/28591.txt -------------------------------------------------------------------------------- /source/compiler/codepage/28592.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/28592.txt -------------------------------------------------------------------------------- /source/compiler/codepage/28593.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/28593.txt -------------------------------------------------------------------------------- /source/compiler/codepage/28594.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/28594.txt -------------------------------------------------------------------------------- /source/compiler/codepage/28595.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/28595.txt -------------------------------------------------------------------------------- /source/compiler/codepage/28596.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/28596.txt -------------------------------------------------------------------------------- /source/compiler/codepage/28597.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/28597.txt -------------------------------------------------------------------------------- /source/compiler/codepage/28598.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/28598.txt -------------------------------------------------------------------------------- /source/compiler/codepage/28599.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/28599.txt -------------------------------------------------------------------------------- /source/compiler/codepage/28603.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/28603.txt -------------------------------------------------------------------------------- /source/compiler/codepage/28605.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/28605.txt -------------------------------------------------------------------------------- /source/compiler/codepage/37.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/37.txt -------------------------------------------------------------------------------- /source/compiler/codepage/38598.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/38598.txt -------------------------------------------------------------------------------- /source/compiler/codepage/437.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/437.txt -------------------------------------------------------------------------------- /source/compiler/codepage/500.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/500.txt -------------------------------------------------------------------------------- /source/compiler/codepage/51932.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/51932.txt -------------------------------------------------------------------------------- /source/compiler/codepage/51936.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/51936.txt -------------------------------------------------------------------------------- /source/compiler/codepage/51949.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/51949.txt -------------------------------------------------------------------------------- /source/compiler/codepage/708.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/708.txt -------------------------------------------------------------------------------- /source/compiler/codepage/720.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/720.txt -------------------------------------------------------------------------------- /source/compiler/codepage/737.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/737.txt -------------------------------------------------------------------------------- /source/compiler/codepage/775.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/775.txt -------------------------------------------------------------------------------- /source/compiler/codepage/850.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/850.txt -------------------------------------------------------------------------------- /source/compiler/codepage/852.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/852.txt -------------------------------------------------------------------------------- /source/compiler/codepage/855.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/855.txt -------------------------------------------------------------------------------- /source/compiler/codepage/857.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/857.txt -------------------------------------------------------------------------------- /source/compiler/codepage/858.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/858.txt -------------------------------------------------------------------------------- /source/compiler/codepage/860.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/860.txt -------------------------------------------------------------------------------- /source/compiler/codepage/861.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/861.txt -------------------------------------------------------------------------------- /source/compiler/codepage/862.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/862.txt -------------------------------------------------------------------------------- /source/compiler/codepage/863.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/863.txt -------------------------------------------------------------------------------- /source/compiler/codepage/864.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/864.txt -------------------------------------------------------------------------------- /source/compiler/codepage/865.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/865.txt -------------------------------------------------------------------------------- /source/compiler/codepage/866.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/866.txt -------------------------------------------------------------------------------- /source/compiler/codepage/869.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/869.txt -------------------------------------------------------------------------------- /source/compiler/codepage/870.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/870.txt -------------------------------------------------------------------------------- /source/compiler/codepage/874.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/874.txt -------------------------------------------------------------------------------- /source/compiler/codepage/875.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/875.txt -------------------------------------------------------------------------------- /source/compiler/codepage/932.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/932.txt -------------------------------------------------------------------------------- /source/compiler/codepage/936.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/936.txt -------------------------------------------------------------------------------- /source/compiler/codepage/949.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/949.txt -------------------------------------------------------------------------------- /source/compiler/codepage/950.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/950.txt -------------------------------------------------------------------------------- /source/compiler/codepage/aix-IBM_850-4.3.6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/aix-IBM_850-4.3.6.txt -------------------------------------------------------------------------------- /source/compiler/codepage/aix-IBM_856-4.3.6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/aix-IBM_856-4.3.6.txt -------------------------------------------------------------------------------- /source/compiler/codepage/aix-IBM_858-4.3.6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/aix-IBM_858-4.3.6.txt -------------------------------------------------------------------------------- /source/compiler/codepage/aix-IBM_932-4.3.6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/aix-IBM_932-4.3.6.txt -------------------------------------------------------------------------------- /source/compiler/codepage/aix-IBM_943-4.3.6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/aix-IBM_943-4.3.6.txt -------------------------------------------------------------------------------- /source/compiler/codepage/aix-TIS_620-4.3.6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/aix-TIS_620-4.3.6.txt -------------------------------------------------------------------------------- /source/compiler/codepage/aix-big5-4.3.6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/aix-big5-4.3.6.txt -------------------------------------------------------------------------------- /source/compiler/codepage/cns-11643-1992.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/cns-11643-1992.txt -------------------------------------------------------------------------------- /source/compiler/codepage/euc-jp-2007.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/euc-jp-2007.txt -------------------------------------------------------------------------------- /source/compiler/codepage/euc-tw-2014.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/euc-tw-2014.txt -------------------------------------------------------------------------------- /source/compiler/codepage/gb-18030-2000.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/gb-18030-2000.txt -------------------------------------------------------------------------------- /source/compiler/codepage/gb-18030-2005.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/gb-18030-2005.txt -------------------------------------------------------------------------------- /source/compiler/codepage/glibc-BIG5-2.1.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/glibc-BIG5-2.1.2.txt -------------------------------------------------------------------------------- /source/compiler/codepage/glibc-BIG5-2.3.3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/glibc-BIG5-2.3.3.txt -------------------------------------------------------------------------------- /source/compiler/codepage/glibc-CP737-2.1.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/glibc-CP737-2.1.2.txt -------------------------------------------------------------------------------- /source/compiler/codepage/glibc-CP775-2.1.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/glibc-CP775-2.1.2.txt -------------------------------------------------------------------------------- /source/compiler/codepage/glibc-CP932-2.3.3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/glibc-CP932-2.3.3.txt -------------------------------------------------------------------------------- /source/compiler/codepage/glibc-CWI-2.1.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/glibc-CWI-2.1.2.txt -------------------------------------------------------------------------------- /source/compiler/codepage/glibc-ES-2.3.3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/glibc-ES-2.3.3.txt -------------------------------------------------------------------------------- /source/compiler/codepage/glibc-ES2-2.3.3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/glibc-ES2-2.3.3.txt -------------------------------------------------------------------------------- /source/compiler/codepage/glibc-GBK-2.3.3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/glibc-GBK-2.3.3.txt -------------------------------------------------------------------------------- /source/compiler/codepage/glibc-INIS-2.1.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/glibc-INIS-2.1.2.txt -------------------------------------------------------------------------------- /source/compiler/codepage/glibc-IT-2.3.3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/glibc-IT-2.3.3.txt -------------------------------------------------------------------------------- /source/compiler/codepage/glibc-JOHAB-2.3.3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/glibc-JOHAB-2.3.3.txt -------------------------------------------------------------------------------- /source/compiler/codepage/glibc-KOI_8-2.1.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/glibc-KOI_8-2.1.2.txt -------------------------------------------------------------------------------- /source/compiler/codepage/glibc-PT-2.3.3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/glibc-PT-2.3.3.txt -------------------------------------------------------------------------------- /source/compiler/codepage/glibc-PT154-2.3.3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/glibc-PT154-2.3.3.txt -------------------------------------------------------------------------------- /source/compiler/codepage/glibc-PT2-2.3.3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/glibc-PT2-2.3.3.txt -------------------------------------------------------------------------------- /source/compiler/codepage/glibc-SJIS-2.1.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/glibc-SJIS-2.1.2.txt -------------------------------------------------------------------------------- /source/compiler/codepage/glibc-SJIS-2.3.3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/glibc-SJIS-2.3.3.txt -------------------------------------------------------------------------------- /source/compiler/codepage/glibc-UHC-2.1.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/glibc-UHC-2.1.2.txt -------------------------------------------------------------------------------- /source/compiler/codepage/glibc-UHC-2.3.3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/glibc-UHC-2.3.3.txt -------------------------------------------------------------------------------- /source/compiler/codepage/hpux-big5-11.11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/hpux-big5-11.11.txt -------------------------------------------------------------------------------- /source/compiler/codepage/hpux-cp1140-11.11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/hpux-cp1140-11.11.txt -------------------------------------------------------------------------------- /source/compiler/codepage/hpux-cp1141-11.11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/hpux-cp1141-11.11.txt -------------------------------------------------------------------------------- /source/compiler/codepage/hpux-cp1142-11.11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/hpux-cp1142-11.11.txt -------------------------------------------------------------------------------- /source/compiler/codepage/hpux-cp1143-11.11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/hpux-cp1143-11.11.txt -------------------------------------------------------------------------------- /source/compiler/codepage/hpux-cp1144-11.11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/hpux-cp1144-11.11.txt -------------------------------------------------------------------------------- /source/compiler/codepage/hpux-cp1145-11.11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/hpux-cp1145-11.11.txt -------------------------------------------------------------------------------- /source/compiler/codepage/hpux-cp1146-11.11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/hpux-cp1146-11.11.txt -------------------------------------------------------------------------------- /source/compiler/codepage/hpux-cp1147-11.11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/hpux-cp1147-11.11.txt -------------------------------------------------------------------------------- /source/compiler/codepage/hpux-cp1148-11.11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/hpux-cp1148-11.11.txt -------------------------------------------------------------------------------- /source/compiler/codepage/hpux-cp1149-11.11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/hpux-cp1149-11.11.txt -------------------------------------------------------------------------------- /source/compiler/codepage/hpux-cp1250-11.11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/hpux-cp1250-11.11.txt -------------------------------------------------------------------------------- /source/compiler/codepage/hpux-cp1251-11.11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/hpux-cp1251-11.11.txt -------------------------------------------------------------------------------- /source/compiler/codepage/hpux-cp1252-11.11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/hpux-cp1252-11.11.txt -------------------------------------------------------------------------------- /source/compiler/codepage/hpux-cp1253-11.11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/hpux-cp1253-11.11.txt -------------------------------------------------------------------------------- /source/compiler/codepage/hpux-cp1254-11.11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/hpux-cp1254-11.11.txt -------------------------------------------------------------------------------- /source/compiler/codepage/hpux-cp1255-11.11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/hpux-cp1255-11.11.txt -------------------------------------------------------------------------------- /source/compiler/codepage/hpux-cp1256-11.11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/hpux-cp1256-11.11.txt -------------------------------------------------------------------------------- /source/compiler/codepage/hpux-cp1257-11.11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/hpux-cp1257-11.11.txt -------------------------------------------------------------------------------- /source/compiler/codepage/hpux-cp1258-11.11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/hpux-cp1258-11.11.txt -------------------------------------------------------------------------------- /source/compiler/codepage/hpux-cp437-11.11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/hpux-cp437-11.11.txt -------------------------------------------------------------------------------- /source/compiler/codepage/hpux-cp737-11.11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/hpux-cp737-11.11.txt -------------------------------------------------------------------------------- /source/compiler/codepage/hpux-cp775-11.11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/hpux-cp775-11.11.txt -------------------------------------------------------------------------------- /source/compiler/codepage/hpux-cp850-11.11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/hpux-cp850-11.11.txt -------------------------------------------------------------------------------- /source/compiler/codepage/hpux-cp852-11.11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/hpux-cp852-11.11.txt -------------------------------------------------------------------------------- /source/compiler/codepage/hpux-cp855-11.11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/hpux-cp855-11.11.txt -------------------------------------------------------------------------------- /source/compiler/codepage/hpux-cp857-11.11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/hpux-cp857-11.11.txt -------------------------------------------------------------------------------- /source/compiler/codepage/hpux-cp860-11.11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/hpux-cp860-11.11.txt -------------------------------------------------------------------------------- /source/compiler/codepage/hpux-cp861-11.11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/hpux-cp861-11.11.txt -------------------------------------------------------------------------------- /source/compiler/codepage/hpux-cp862-11.11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/hpux-cp862-11.11.txt -------------------------------------------------------------------------------- /source/compiler/codepage/hpux-cp863-11.11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/hpux-cp863-11.11.txt -------------------------------------------------------------------------------- /source/compiler/codepage/hpux-cp864-11.11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/hpux-cp864-11.11.txt -------------------------------------------------------------------------------- /source/compiler/codepage/hpux-cp865-11.11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/hpux-cp865-11.11.txt -------------------------------------------------------------------------------- /source/compiler/codepage/hpux-cp866-11.11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/hpux-cp866-11.11.txt -------------------------------------------------------------------------------- /source/compiler/codepage/hpux-cp869-11.11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/hpux-cp869-11.11.txt -------------------------------------------------------------------------------- /source/compiler/codepage/hpux-cp874-11.11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/hpux-cp874-11.11.txt -------------------------------------------------------------------------------- /source/compiler/codepage/hpux-eucJP-11.11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/hpux-eucJP-11.11.txt -------------------------------------------------------------------------------- /source/compiler/codepage/hpux-eucKR-11.11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/hpux-eucKR-11.11.txt -------------------------------------------------------------------------------- /source/compiler/codepage/hpux-eucTW-11.11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/hpux-eucTW-11.11.txt -------------------------------------------------------------------------------- /source/compiler/codepage/hpux-greee-11.11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/hpux-greee-11.11.txt -------------------------------------------------------------------------------- /source/compiler/codepage/hpux-hkbig5-11.11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/hpux-hkbig5-11.11.txt -------------------------------------------------------------------------------- /source/compiler/codepage/hpux-hp15CN-11.11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/hpux-hp15CN-11.11.txt -------------------------------------------------------------------------------- /source/compiler/codepage/hpux-iso81-11.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/hpux-iso81-11.0.txt -------------------------------------------------------------------------------- /source/compiler/codepage/hpux-iso815-11.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/hpux-iso815-11.0.txt -------------------------------------------------------------------------------- /source/compiler/codepage/hpux-iso82-11.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/hpux-iso82-11.0.txt -------------------------------------------------------------------------------- /source/compiler/codepage/hpux-iso85-11.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/hpux-iso85-11.0.txt -------------------------------------------------------------------------------- /source/compiler/codepage/hpux-iso86-11.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/hpux-iso86-11.0.txt -------------------------------------------------------------------------------- /source/compiler/codepage/hpux-iso87-11.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/hpux-iso87-11.0.txt -------------------------------------------------------------------------------- /source/compiler/codepage/hpux-iso87-11.11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/hpux-iso87-11.11.txt -------------------------------------------------------------------------------- /source/compiler/codepage/hpux-iso88-11.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/hpux-iso88-11.0.txt -------------------------------------------------------------------------------- /source/compiler/codepage/hpux-iso89-11.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/hpux-iso89-11.0.txt -------------------------------------------------------------------------------- /source/compiler/codepage/hpux-roc15-11.11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/hpux-roc15-11.11.txt -------------------------------------------------------------------------------- /source/compiler/codepage/hpux-roma8-11.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/hpux-roma8-11.0.txt -------------------------------------------------------------------------------- /source/compiler/codepage/hpux-sjis-11.11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/hpux-sjis-11.11.txt -------------------------------------------------------------------------------- /source/compiler/codepage/hpux-sjisMS-11.11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/hpux-sjisMS-11.11.txt -------------------------------------------------------------------------------- /source/compiler/codepage/hpux-thai8-11.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/hpux-thai8-11.0.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-256_P100-1995.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-256_P100-1995.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-259_P100-1995.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-259_P100-1995.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-259_X100-1995.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-259_X100-1995.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-273_P100-1999.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-273_P100-1999.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-274_P100-2000.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-274_P100-2000.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-275_P100-1995.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-275_P100-1995.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-277_P100-1999.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-277_P100-1999.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-278_P100-1999.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-278_P100-1999.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-280_P100-1999.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-280_P100-1999.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-282_P100-1995.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-282_P100-1995.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-284_P100-1999.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-284_P100-1999.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-285_P100-1999.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-285_P100-1999.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-286_P100-2003.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-286_P100-2003.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-290_P100-1995.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-290_P100-1995.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-293_P100-1995.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-293_P100-1995.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-293_X100-1995.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-293_X100-1995.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-297_P100-1999.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-297_P100-1999.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-300_P110-1997.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-300_P110-1997.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-300_P120-2006.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-300_P120-2006.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-300_X110-1997.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-300_X110-1997.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-301_P110-1997.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-301_P110-1997.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-301_X110-1997.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-301_X110-1997.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-367_P100-1995.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-367_P100-1995.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-37_P100-1999.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-37_P100-1999.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-420_X110-1999.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-420_X110-1999.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-420_X120-1999.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-420_X120-1999.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-423_P100-1995.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-423_P100-1995.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-424_P100-1995.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-424_P100-1995.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-425_P101-2000.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-425_P101-2000.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-437_P100-1995.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-437_P100-1995.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-500_P100-1999.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-500_P100-1999.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-720_P100-1997.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-720_P100-1997.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-737_P100-1997.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-737_P100-1997.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-775_P100-1996.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-775_P100-1996.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-803_P100-1999.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-803_P100-1999.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-806_P100-1998.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-806_P100-1998.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-808_P100-1999.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-808_P100-1999.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-813_P100-1995.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-813_P100-1995.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-819_P100-1999.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-819_P100-1999.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-833_P100-1995.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-833_P100-1995.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-834_P100-1995.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-834_P100-1995.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-834_X100-1995.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-834_X100-1995.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-835_P100-1995.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-835_P100-1995.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-835_X100-1995.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-835_X100-1995.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-836_P100-1995.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-836_P100-1995.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-837_P100-1995.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-837_P100-1995.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-837_P100-2011.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-837_P100-2011.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-837_X100-1995.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-837_X100-1995.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-838_P100-1995.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-838_P100-1995.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-848_P100-1999.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-848_P100-1999.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-849_P100-1999.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-849_P100-1999.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-850_P100-1999.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-850_P100-1999.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-851_P100-1995.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-851_P100-1995.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-852_P100-1999.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-852_P100-1999.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-855_P100-1995.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-855_P100-1995.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-856_P100-1995.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-856_P100-1995.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-857_P100-1995.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-857_P100-1995.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-858_P100-1997.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-858_P100-1997.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-859_P100-1999.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-859_P100-1999.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-860_P100-1995.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-860_P100-1995.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-861_P100-1995.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-861_P100-1995.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-862_P100-1995.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-862_P100-1995.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-863_P100-1995.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-863_P100-1995.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-864_X110-1999.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-864_X110-1999.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-864_X120-2012.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-864_X120-2012.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-865_P100-1995.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-865_P100-1995.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-866_P100-1995.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-866_P100-1995.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-867_P100-1998.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-867_P100-1998.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-868_P100-1995.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-868_P100-1995.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-868_X100-1995.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-868_X100-1995.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-869_P100-1995.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-869_P100-1995.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-870_P100-1999.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-870_P100-1999.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-871_P100-1999.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-871_P100-1999.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-872_P100-1999.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-872_P100-1999.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-874_P100-1995.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-874_P100-1995.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-875_P100-1995.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-875_P100-1995.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-878_P100-1996.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-878_P100-1996.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-880_P100-1995.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-880_P100-1995.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-891_P100-1995.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-891_P100-1995.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-895_P100-1995.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-895_P100-1995.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-896_P100-1995.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-896_P100-1995.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-897_P100-1995.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-897_P100-1995.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-901_P100-1999.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-901_P100-1999.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-902_P100-1999.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-902_P100-1999.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-903_P100-1995.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-903_P100-1995.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-904_P100-1995.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-904_P100-1995.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-905_P100-1995.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-905_P100-1995.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-912_P100-1999.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-912_P100-1999.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-913_P100-2000.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-913_P100-2000.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-914_P100-1995.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-914_P100-1995.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-915_P100-1995.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-915_P100-1995.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-916_P100-1995.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-916_P100-1995.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-918_P100-1995.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-918_P100-1995.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-918_X100-1995.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-918_X100-1995.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-920_P100-1995.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-920_P100-1995.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-921_P100-1995.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-921_P100-1995.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-922_P100-1999.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-922_P100-1999.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-923_P100-1998.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-923_P100-1998.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-924_P100-1998.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-924_P100-1998.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-926_P100-2000.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-926_P100-2000.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-927_P100-1995.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-927_P100-1995.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-927_X100-1995.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-927_X100-1995.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-928_P100-1995.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-928_P100-1995.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-930_P120-1999.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-930_P120-1999.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-930_X120-1999.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-930_X120-1999.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-931_P120-1999.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-931_P120-1999.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-931_X120-1999.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-931_X120-1999.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-932_P120-1999.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-932_P120-1999.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-932_P12A-1999.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-932_P12A-1999.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-933_P110-1999.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-933_P110-1999.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-933_X110-1999.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-933_X110-1999.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-935_P110-1999.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-935_P110-1999.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-935_X110-1999.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-935_X110-1999.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-937_P110-1999.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-937_P110-1999.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-937_X110-1999.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-937_X110-1999.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-939_P120-1999.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-939_P120-1999.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-939_X120-1999.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-939_X120-1999.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-941_P120-1996.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-941_P120-1996.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-941_P12A-1996.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-941_P12A-1996.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-941_P130-2001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-941_P130-2001.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-941_P13A-2001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-941_P13A-2001.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-941_X110-1996.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-941_X110-1996.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-941_X11A-1996.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-941_X11A-1996.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-942_P120-1999.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-942_P120-1999.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-942_P12A-1999.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-942_P12A-1999.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-943_P130-1999.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-943_P130-1999.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-943_P14A-1999.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-943_P14A-1999.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-943_P15A-2003.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-943_P15A-2003.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-944_P100-1995.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-944_P100-1995.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-944_X100-1995.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-944_X100-1995.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-946_P100-1995.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-946_P100-1995.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-947_P100-1995.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-947_P100-1995.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-947_X100-1995.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-947_X100-1995.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-948_P110-1999.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-948_P110-1999.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-948_X110-1999.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-948_X110-1999.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-949_P110-1999.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-949_P110-1999.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-949_P11A-1999.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-949_P11A-1999.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-949_X110-1999.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-949_X110-1999.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-950_P110-1999.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-950_P110-1999.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-950_X110-1999.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-950_X110-1999.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-951_P100-1995.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-951_P100-1995.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-951_X100-1995.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-951_X100-1995.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-952_P110-1997.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-952_P110-1997.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-953_P100-2000.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-953_P100-2000.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-954_P101-2007.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-954_P101-2007.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-955_P110-1997.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-955_P110-1997.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-960_P100-2000.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-960_P100-2000.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-963_P100-1995.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-963_P100-1995.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-964_P110-1999.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-964_P110-1999.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-964_X110-1999.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-964_X110-1999.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-970_P110-1999.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-970_P110-1999.txt -------------------------------------------------------------------------------- /source/compiler/codepage/ibm-971_P100-1995.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/ibm-971_P100-1995.txt -------------------------------------------------------------------------------- /source/compiler/codepage/iso-8859_1-1998.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/iso-8859_1-1998.txt -------------------------------------------------------------------------------- /source/compiler/codepage/iso-8859_10-1998.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/iso-8859_10-1998.txt -------------------------------------------------------------------------------- /source/compiler/codepage/iso-8859_11-2001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/iso-8859_11-2001.txt -------------------------------------------------------------------------------- /source/compiler/codepage/iso-8859_13-1998.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/iso-8859_13-1998.txt -------------------------------------------------------------------------------- /source/compiler/codepage/iso-8859_14-1998.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/iso-8859_14-1998.txt -------------------------------------------------------------------------------- /source/compiler/codepage/iso-8859_15-1999.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/iso-8859_15-1999.txt -------------------------------------------------------------------------------- /source/compiler/codepage/iso-8859_16-2001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/iso-8859_16-2001.txt -------------------------------------------------------------------------------- /source/compiler/codepage/iso-8859_2-1999.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/iso-8859_2-1999.txt -------------------------------------------------------------------------------- /source/compiler/codepage/iso-8859_3-1999.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/iso-8859_3-1999.txt -------------------------------------------------------------------------------- /source/compiler/codepage/iso-8859_4-1998.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/iso-8859_4-1998.txt -------------------------------------------------------------------------------- /source/compiler/codepage/iso-8859_5-1999.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/iso-8859_5-1999.txt -------------------------------------------------------------------------------- /source/compiler/codepage/iso-8859_6-1999.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/iso-8859_6-1999.txt -------------------------------------------------------------------------------- /source/compiler/codepage/iso-8859_7-1987.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/iso-8859_7-1987.txt -------------------------------------------------------------------------------- /source/compiler/codepage/iso-8859_7-2003.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/iso-8859_7-2003.txt -------------------------------------------------------------------------------- /source/compiler/codepage/iso-8859_8-1999.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/iso-8859_8-1999.txt -------------------------------------------------------------------------------- /source/compiler/codepage/iso-8859_9-1999.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/iso-8859_9-1999.txt -------------------------------------------------------------------------------- /source/compiler/codepage/java-ASCII-1.3_P.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/java-ASCII-1.3_P.txt -------------------------------------------------------------------------------- /source/compiler/codepage/java-Big5-1.3_P.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/java-Big5-1.3_P.txt -------------------------------------------------------------------------------- /source/compiler/codepage/java-Cp037-1.3_P.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/java-Cp037-1.3_P.txt -------------------------------------------------------------------------------- /source/compiler/codepage/java-Cp1006-1.3_P.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/java-Cp1006-1.3_P.txt -------------------------------------------------------------------------------- /source/compiler/codepage/java-Cp1025-1.3_P.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/java-Cp1025-1.3_P.txt -------------------------------------------------------------------------------- /source/compiler/codepage/java-Cp1026-1.3_P.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/java-Cp1026-1.3_P.txt -------------------------------------------------------------------------------- /source/compiler/codepage/java-Cp1097-1.3_P.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/java-Cp1097-1.3_P.txt -------------------------------------------------------------------------------- /source/compiler/codepage/java-Cp1098-1.3_P.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/java-Cp1098-1.3_P.txt -------------------------------------------------------------------------------- /source/compiler/codepage/java-Cp1112-1.3_P.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/java-Cp1112-1.3_P.txt -------------------------------------------------------------------------------- /source/compiler/codepage/java-Cp1122-1.3_P.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/java-Cp1122-1.3_P.txt -------------------------------------------------------------------------------- /source/compiler/codepage/java-Cp1123-1.3_P.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/java-Cp1123-1.3_P.txt -------------------------------------------------------------------------------- /source/compiler/codepage/java-Cp1124-1.3_P.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/java-Cp1124-1.3_P.txt -------------------------------------------------------------------------------- /source/compiler/codepage/java-Cp1250-1.3_P.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/java-Cp1250-1.3_P.txt -------------------------------------------------------------------------------- /source/compiler/codepage/java-Cp1251-1.3_P.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/java-Cp1251-1.3_P.txt -------------------------------------------------------------------------------- /source/compiler/codepage/java-Cp1252-1.3_P.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/java-Cp1252-1.3_P.txt -------------------------------------------------------------------------------- /source/compiler/codepage/java-Cp1253-1.3_P.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/java-Cp1253-1.3_P.txt -------------------------------------------------------------------------------- /source/compiler/codepage/java-Cp1254-1.3_P.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/java-Cp1254-1.3_P.txt -------------------------------------------------------------------------------- /source/compiler/codepage/java-Cp1255-1.3_P.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/java-Cp1255-1.3_P.txt -------------------------------------------------------------------------------- /source/compiler/codepage/java-Cp1256-1.3_P.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/java-Cp1256-1.3_P.txt -------------------------------------------------------------------------------- /source/compiler/codepage/java-Cp1257-1.3_P.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/java-Cp1257-1.3_P.txt -------------------------------------------------------------------------------- /source/compiler/codepage/java-Cp1258-1.3_P.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/java-Cp1258-1.3_P.txt -------------------------------------------------------------------------------- /source/compiler/codepage/java-Cp1381-1.3_P.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/java-Cp1381-1.3_P.txt -------------------------------------------------------------------------------- /source/compiler/codepage/java-Cp1383-1.3_P.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/java-Cp1383-1.3_P.txt -------------------------------------------------------------------------------- /source/compiler/codepage/java-Cp273-1.3_P.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/java-Cp273-1.3_P.txt -------------------------------------------------------------------------------- /source/compiler/codepage/java-Cp277-1.3_P.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/java-Cp277-1.3_P.txt -------------------------------------------------------------------------------- /source/compiler/codepage/java-Cp278-1.3_P.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/java-Cp278-1.3_P.txt -------------------------------------------------------------------------------- /source/compiler/codepage/java-Cp280-1.3_P.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/java-Cp280-1.3_P.txt -------------------------------------------------------------------------------- /source/compiler/codepage/java-Cp284-1.3_P.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/java-Cp284-1.3_P.txt -------------------------------------------------------------------------------- /source/compiler/codepage/java-Cp285-1.3_P.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/java-Cp285-1.3_P.txt -------------------------------------------------------------------------------- /source/compiler/codepage/java-Cp297-1.3_P.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/java-Cp297-1.3_P.txt -------------------------------------------------------------------------------- /source/compiler/codepage/java-Cp420-1.3_P.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/java-Cp420-1.3_P.txt -------------------------------------------------------------------------------- /source/compiler/codepage/java-Cp420s-1.6_P.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/java-Cp420s-1.6_P.txt -------------------------------------------------------------------------------- /source/compiler/codepage/java-Cp424-1.3_P.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/java-Cp424-1.3_P.txt -------------------------------------------------------------------------------- /source/compiler/codepage/java-Cp437-1.3_P.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/java-Cp437-1.3_P.txt -------------------------------------------------------------------------------- /source/compiler/codepage/java-Cp500-1.3_P.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/java-Cp500-1.3_P.txt -------------------------------------------------------------------------------- /source/compiler/codepage/java-Cp737-1.3_P.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/java-Cp737-1.3_P.txt -------------------------------------------------------------------------------- /source/compiler/codepage/java-Cp775-1.3_P.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/java-Cp775-1.3_P.txt -------------------------------------------------------------------------------- /source/compiler/codepage/java-Cp838-1.3_P.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/java-Cp838-1.3_P.txt -------------------------------------------------------------------------------- /source/compiler/codepage/java-Cp850-1.3_P.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/java-Cp850-1.3_P.txt -------------------------------------------------------------------------------- /source/compiler/codepage/java-Cp852-1.3_P.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/java-Cp852-1.3_P.txt -------------------------------------------------------------------------------- /source/compiler/codepage/java-Cp855-1.3_P.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/java-Cp855-1.3_P.txt -------------------------------------------------------------------------------- /source/compiler/codepage/java-Cp856-1.3_P.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/java-Cp856-1.3_P.txt -------------------------------------------------------------------------------- /source/compiler/codepage/java-Cp857-1.3_P.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/java-Cp857-1.3_P.txt -------------------------------------------------------------------------------- /source/compiler/codepage/java-Cp860-1.3_P.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/java-Cp860-1.3_P.txt -------------------------------------------------------------------------------- /source/compiler/codepage/java-Cp861-1.3_P.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/java-Cp861-1.3_P.txt -------------------------------------------------------------------------------- /source/compiler/codepage/java-Cp862-1.3_P.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/java-Cp862-1.3_P.txt -------------------------------------------------------------------------------- /source/compiler/codepage/java-Cp863-1.3_P.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/java-Cp863-1.3_P.txt -------------------------------------------------------------------------------- /source/compiler/codepage/java-Cp864-1.3_P.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/java-Cp864-1.3_P.txt -------------------------------------------------------------------------------- /source/compiler/codepage/java-Cp865-1.3_P.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/java-Cp865-1.3_P.txt -------------------------------------------------------------------------------- /source/compiler/codepage/java-Cp866-1.3_P.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/java-Cp866-1.3_P.txt -------------------------------------------------------------------------------- /source/compiler/codepage/java-Cp868-1.3_P.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/java-Cp868-1.3_P.txt -------------------------------------------------------------------------------- /source/compiler/codepage/java-Cp869-1.3_P.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/java-Cp869-1.3_P.txt -------------------------------------------------------------------------------- /source/compiler/codepage/java-Cp870-1.3_P.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/java-Cp870-1.3_P.txt -------------------------------------------------------------------------------- /source/compiler/codepage/java-Cp871-1.3_P.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/java-Cp871-1.3_P.txt -------------------------------------------------------------------------------- /source/compiler/codepage/java-Cp874-1.3_P.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/java-Cp874-1.3_P.txt -------------------------------------------------------------------------------- /source/compiler/codepage/java-Cp875-1.3_P.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/java-Cp875-1.3_P.txt -------------------------------------------------------------------------------- /source/compiler/codepage/java-Cp918-1.3_P.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/java-Cp918-1.3_P.txt -------------------------------------------------------------------------------- /source/compiler/codepage/java-Cp921-1.3_P.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/java-Cp921-1.3_P.txt -------------------------------------------------------------------------------- /source/compiler/codepage/java-Cp922-1.3_P.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/java-Cp922-1.3_P.txt -------------------------------------------------------------------------------- /source/compiler/codepage/java-Cp930-1.3_P.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/java-Cp930-1.3_P.txt -------------------------------------------------------------------------------- /source/compiler/codepage/java-Cp933-1.3_P.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/java-Cp933-1.3_P.txt -------------------------------------------------------------------------------- /source/compiler/codepage/java-Cp935-1.3_P.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/java-Cp935-1.3_P.txt -------------------------------------------------------------------------------- /source/compiler/codepage/java-Cp937-1.3_P.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/java-Cp937-1.3_P.txt -------------------------------------------------------------------------------- /source/compiler/codepage/java-Cp939-1.3_P.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/java-Cp939-1.3_P.txt -------------------------------------------------------------------------------- /source/compiler/codepage/java-SJIS-1.3_P.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/java-SJIS-1.3_P.txt -------------------------------------------------------------------------------- /source/compiler/codepage/macos-0_1-10.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/macos-0_1-10.2.txt -------------------------------------------------------------------------------- /source/compiler/codepage/macos-0_2-10.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/macos-0_2-10.2.txt -------------------------------------------------------------------------------- /source/compiler/codepage/macos-1024-10.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/macos-1024-10.2.txt -------------------------------------------------------------------------------- /source/compiler/codepage/macos-1040-10.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/macos-1040-10.2.txt -------------------------------------------------------------------------------- /source/compiler/codepage/macos-1049-10.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/macos-1049-10.2.txt -------------------------------------------------------------------------------- /source/compiler/codepage/macos-1057-10.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/macos-1057-10.2.txt -------------------------------------------------------------------------------- /source/compiler/codepage/macos-1059-10.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/macos-1059-10.2.txt -------------------------------------------------------------------------------- /source/compiler/codepage/macos-1280-10.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/macos-1280-10.2.txt -------------------------------------------------------------------------------- /source/compiler/codepage/macos-1281-10.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/macos-1281-10.2.txt -------------------------------------------------------------------------------- /source/compiler/codepage/macos-1282-10.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/macos-1282-10.2.txt -------------------------------------------------------------------------------- /source/compiler/codepage/macos-1283-10.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/macos-1283-10.2.txt -------------------------------------------------------------------------------- /source/compiler/codepage/macos-1284-10.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/macos-1284-10.2.txt -------------------------------------------------------------------------------- /source/compiler/codepage/macos-1285-10.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/macos-1285-10.2.txt -------------------------------------------------------------------------------- /source/compiler/codepage/macos-1286-10.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/macos-1286-10.2.txt -------------------------------------------------------------------------------- /source/compiler/codepage/macos-1287-10.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/macos-1287-10.2.txt -------------------------------------------------------------------------------- /source/compiler/codepage/macos-1288-10.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/macos-1288-10.2.txt -------------------------------------------------------------------------------- /source/compiler/codepage/macos-1536-10.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/macos-1536-10.2.txt -------------------------------------------------------------------------------- /source/compiler/codepage/macos-21-10.5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/macos-21-10.5.txt -------------------------------------------------------------------------------- /source/compiler/codepage/macos-2562-10.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/macos-2562-10.2.txt -------------------------------------------------------------------------------- /source/compiler/codepage/macos-2563-10.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/macos-2563-10.2.txt -------------------------------------------------------------------------------- /source/compiler/codepage/macos-2566-10.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/macos-2566-10.2.txt -------------------------------------------------------------------------------- /source/compiler/codepage/macos-2817-10.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/macos-2817-10.2.txt -------------------------------------------------------------------------------- /source/compiler/codepage/macos-29-10.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/macos-29-10.2.txt -------------------------------------------------------------------------------- /source/compiler/codepage/macos-3074-10.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/macos-3074-10.2.txt -------------------------------------------------------------------------------- /source/compiler/codepage/macos-33-10.5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/macos-33-10.5.txt -------------------------------------------------------------------------------- /source/compiler/codepage/macos-34-10.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/macos-34-10.2.txt -------------------------------------------------------------------------------- /source/compiler/codepage/macos-35-10.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/macos-35-10.2.txt -------------------------------------------------------------------------------- /source/compiler/codepage/macos-36_1-10.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/macos-36_1-10.2.txt -------------------------------------------------------------------------------- /source/compiler/codepage/macos-36_2-10.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/macos-36_2-10.2.txt -------------------------------------------------------------------------------- /source/compiler/codepage/macos-37_2-10.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/macos-37_2-10.2.txt -------------------------------------------------------------------------------- /source/compiler/codepage/macos-37_3-10.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/macos-37_3-10.2.txt -------------------------------------------------------------------------------- /source/compiler/codepage/macos-37_4-10.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/macos-37_4-10.2.txt -------------------------------------------------------------------------------- /source/compiler/codepage/macos-37_5-10.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/macos-37_5-10.2.txt -------------------------------------------------------------------------------- /source/compiler/codepage/macos-38_1-10.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/macos-38_1-10.2.txt -------------------------------------------------------------------------------- /source/compiler/codepage/macos-38_2-10.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/macos-38_2-10.2.txt -------------------------------------------------------------------------------- /source/compiler/codepage/macos-513-10.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/macos-513-10.2.txt -------------------------------------------------------------------------------- /source/compiler/codepage/macos-514-10.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/macos-514-10.2.txt -------------------------------------------------------------------------------- /source/compiler/codepage/macos-515-10.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/macos-515-10.2.txt -------------------------------------------------------------------------------- /source/compiler/codepage/macos-516-10.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/macos-516-10.2.txt -------------------------------------------------------------------------------- /source/compiler/codepage/macos-517-10.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/macos-517-10.2.txt -------------------------------------------------------------------------------- /source/compiler/codepage/macos-518-10.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/macos-518-10.2.txt -------------------------------------------------------------------------------- /source/compiler/codepage/macos-519-10.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/macos-519-10.2.txt -------------------------------------------------------------------------------- /source/compiler/codepage/macos-520-10.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/macos-520-10.2.txt -------------------------------------------------------------------------------- /source/compiler/codepage/macos-521-10.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/macos-521-10.2.txt -------------------------------------------------------------------------------- /source/compiler/codepage/macos-527-10.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/macos-527-10.2.txt -------------------------------------------------------------------------------- /source/compiler/codepage/macos-6-10.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/macos-6-10.2.txt -------------------------------------------------------------------------------- /source/compiler/codepage/macos-6_2-10.4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/macos-6_2-10.4.txt -------------------------------------------------------------------------------- /source/compiler/codepage/macos-7_1-10.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/macos-7_1-10.2.txt -------------------------------------------------------------------------------- /source/compiler/codepage/macos-7_2-10.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/macos-7_2-10.2.txt -------------------------------------------------------------------------------- /source/compiler/codepage/macos-7_3-10.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/macos-7_3-10.2.txt -------------------------------------------------------------------------------- /source/compiler/codepage/solaris-646-2.7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/solaris-646-2.7.txt -------------------------------------------------------------------------------- /source/compiler/codepage/solaris-PCK-2.7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/solaris-PCK-2.7.txt -------------------------------------------------------------------------------- /source/compiler/codepage/windows-37-2000.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/codepage/windows-37-2000.txt -------------------------------------------------------------------------------- /source/compiler/hashtable/hashtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/hashtable/hashtable.h -------------------------------------------------------------------------------- /source/compiler/hashtable/wrap_hashtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/hashtable/wrap_hashtable.c -------------------------------------------------------------------------------- /source/compiler/hashtable/wrap_hashtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/hashtable/wrap_hashtable.h -------------------------------------------------------------------------------- /source/compiler/libpawnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/libpawnc.c -------------------------------------------------------------------------------- /source/compiler/libpawnc.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/libpawnc.def -------------------------------------------------------------------------------- /source/compiler/libpawnc.def.borland: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/libpawnc.def.borland -------------------------------------------------------------------------------- /source/compiler/libpawnc.lbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/libpawnc.lbc -------------------------------------------------------------------------------- /source/compiler/libpawnc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/libpawnc.rc -------------------------------------------------------------------------------- /source/compiler/lstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/lstring.c -------------------------------------------------------------------------------- /source/compiler/lstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/lstring.h -------------------------------------------------------------------------------- /source/compiler/memfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/memfile.c -------------------------------------------------------------------------------- /source/compiler/memfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/memfile.h -------------------------------------------------------------------------------- /source/compiler/pawncc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/pawncc.c -------------------------------------------------------------------------------- /source/compiler/pawncc.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/pawncc.def -------------------------------------------------------------------------------- /source/compiler/pawncc.def.borland: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/pawncc.def.borland -------------------------------------------------------------------------------- /source/compiler/pawndisasm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/pawndisasm.c -------------------------------------------------------------------------------- /source/compiler/pawnruns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/pawnruns.c -------------------------------------------------------------------------------- /source/compiler/sc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/sc.h -------------------------------------------------------------------------------- /source/compiler/sc1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/sc1.c -------------------------------------------------------------------------------- /source/compiler/sc2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/sc2.c -------------------------------------------------------------------------------- /source/compiler/sc3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/sc3.c -------------------------------------------------------------------------------- /source/compiler/sc4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/sc4.c -------------------------------------------------------------------------------- /source/compiler/sc5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/sc5.c -------------------------------------------------------------------------------- /source/compiler/sc6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/sc6.c -------------------------------------------------------------------------------- /source/compiler/sc7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/sc7.c -------------------------------------------------------------------------------- /source/compiler/sci18n.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/sci18n.c -------------------------------------------------------------------------------- /source/compiler/sclist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/sclist.c -------------------------------------------------------------------------------- /source/compiler/scmemfil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/scmemfil.c -------------------------------------------------------------------------------- /source/compiler/scstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/scstate.c -------------------------------------------------------------------------------- /source/compiler/scstub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/scstub.c -------------------------------------------------------------------------------- /source/compiler/scvars.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/scvars.c -------------------------------------------------------------------------------- /source/compiler/tests/.gitignore: -------------------------------------------------------------------------------- 1 | *.amx 2 | *.asm 3 | *.lst 4 | -------------------------------------------------------------------------------- /source/compiler/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/CMakeLists.txt -------------------------------------------------------------------------------- /source/compiler/tests/__addressof.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/__addressof.meta -------------------------------------------------------------------------------- /source/compiler/tests/__addressof.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/__addressof.pwn -------------------------------------------------------------------------------- /source/compiler/tests/__emit.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/__emit.inc -------------------------------------------------------------------------------- /source/compiler/tests/__emit_p1.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/__emit_p1.meta -------------------------------------------------------------------------------- /source/compiler/tests/__emit_p1.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/__emit_p1.pwn -------------------------------------------------------------------------------- /source/compiler/tests/__emit_p2.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/__emit_p2.meta -------------------------------------------------------------------------------- /source/compiler/tests/__emit_p2.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/__emit_p2.pwn -------------------------------------------------------------------------------- /source/compiler/tests/__emit_p3.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/__emit_p3.meta -------------------------------------------------------------------------------- /source/compiler/tests/__emit_p3.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/__emit_p3.pwn -------------------------------------------------------------------------------- /source/compiler/tests/__emit_p4.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/__emit_p4.meta -------------------------------------------------------------------------------- /source/compiler/tests/__emit_p4.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/__emit_p4.pwn -------------------------------------------------------------------------------- /source/compiler/tests/__emit_p5.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/__emit_p5.meta -------------------------------------------------------------------------------- /source/compiler/tests/__emit_p5.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/__emit_p5.pwn -------------------------------------------------------------------------------- /source/compiler/tests/__emit_p6.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/__emit_p6.meta -------------------------------------------------------------------------------- /source/compiler/tests/__emit_p6.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/__emit_p6.pwn -------------------------------------------------------------------------------- /source/compiler/tests/__emit_p7.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/__emit_p7.meta -------------------------------------------------------------------------------- /source/compiler/tests/__emit_p7.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/__emit_p7.pwn -------------------------------------------------------------------------------- /source/compiler/tests/__emit_pcode_check.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/__emit_pcode_check.pwn -------------------------------------------------------------------------------- /source/compiler/tests/__nameof_1.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/__nameof_1.meta -------------------------------------------------------------------------------- /source/compiler/tests/__nameof_1.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/__nameof_1.pwn -------------------------------------------------------------------------------- /source/compiler/tests/__nameof_2.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/__nameof_2.meta -------------------------------------------------------------------------------- /source/compiler/tests/__nameof_2.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/__nameof_2.pwn -------------------------------------------------------------------------------- /source/compiler/tests/__pragma.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/__pragma.meta -------------------------------------------------------------------------------- /source/compiler/tests/__pragma.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/__pragma.pwn -------------------------------------------------------------------------------- /source/compiler/tests/__pragma_pcode.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/__pragma_pcode.meta -------------------------------------------------------------------------------- /source/compiler/tests/__pragma_pcode.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/__pragma_pcode.pwn -------------------------------------------------------------------------------- /source/compiler/tests/__static_assert.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/__static_assert.meta -------------------------------------------------------------------------------- /source/compiler/tests/__static_assert.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/__static_assert.pwn -------------------------------------------------------------------------------- /source/compiler/tests/__timestamp.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/__timestamp.meta -------------------------------------------------------------------------------- /source/compiler/tests/__timestamp.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/__timestamp.pwn -------------------------------------------------------------------------------- /source/compiler/tests/array_defvalue.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/array_defvalue.meta -------------------------------------------------------------------------------- /source/compiler/tests/array_defvalue.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/array_defvalue.pwn -------------------------------------------------------------------------------- /source/compiler/tests/const_static.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/const_static.inc -------------------------------------------------------------------------------- /source/compiler/tests/const_static.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/const_static.meta -------------------------------------------------------------------------------- /source/compiler/tests/const_static.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/const_static.pwn -------------------------------------------------------------------------------- /source/compiler/tests/empty_warning_crash_gh_339.pwn: -------------------------------------------------------------------------------- 1 | #warning 2 | 3 | main () {} -------------------------------------------------------------------------------- /source/compiler/tests/enum_increment.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/enum_increment.meta -------------------------------------------------------------------------------- /source/compiler/tests/enum_increment.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/enum_increment.pwn -------------------------------------------------------------------------------- /source/compiler/tests/error_013_1.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/error_013_1.meta -------------------------------------------------------------------------------- /source/compiler/tests/error_013_1.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/error_013_1.pwn -------------------------------------------------------------------------------- /source/compiler/tests/error_013_2.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/error_013_2.meta -------------------------------------------------------------------------------- /source/compiler/tests/error_013_2.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/error_013_2.pwn -------------------------------------------------------------------------------- /source/compiler/tests/error_013_3.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/error_013_3.meta -------------------------------------------------------------------------------- /source/compiler/tests/error_013_3.pwn: -------------------------------------------------------------------------------- 1 | forward main(); 2 | -------------------------------------------------------------------------------- /source/compiler/tests/error_013_4.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/error_013_4.meta -------------------------------------------------------------------------------- /source/compiler/tests/error_013_4.pwn: -------------------------------------------------------------------------------- 1 | forward public Func(); 2 | -------------------------------------------------------------------------------- /source/compiler/tests/error_047.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/error_047.meta -------------------------------------------------------------------------------- /source/compiler/tests/error_047.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/error_047.pwn -------------------------------------------------------------------------------- /source/compiler/tests/error_094.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/error_094.meta -------------------------------------------------------------------------------- /source/compiler/tests/error_094.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/error_094.pwn -------------------------------------------------------------------------------- /source/compiler/tests/gh_206_multiple_inputs_2.pwn: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | b_main() { 4 | print("hello"); 5 | } 6 | -------------------------------------------------------------------------------- /source/compiler/tests/gh_217.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/gh_217.meta -------------------------------------------------------------------------------- /source/compiler/tests/gh_217.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/gh_217.pwn -------------------------------------------------------------------------------- /source/compiler/tests/gh_258.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/gh_258.meta -------------------------------------------------------------------------------- /source/compiler/tests/gh_258.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/gh_258.pwn -------------------------------------------------------------------------------- /source/compiler/tests/gh_283.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/gh_283.meta -------------------------------------------------------------------------------- /source/compiler/tests/gh_283.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/gh_283.pwn -------------------------------------------------------------------------------- /source/compiler/tests/gh_373.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/gh_373.meta -------------------------------------------------------------------------------- /source/compiler/tests/gh_373.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/gh_373.pwn -------------------------------------------------------------------------------- /source/compiler/tests/gh_398.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/gh_398.inc -------------------------------------------------------------------------------- /source/compiler/tests/gh_398.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/gh_398.meta -------------------------------------------------------------------------------- /source/compiler/tests/gh_398.pwn: -------------------------------------------------------------------------------- 1 | #include "gh_398.inc" 2 | main(){} 3 | -------------------------------------------------------------------------------- /source/compiler/tests/gh_403.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/gh_403.meta -------------------------------------------------------------------------------- /source/compiler/tests/gh_403.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/gh_403.pwn -------------------------------------------------------------------------------- /source/compiler/tests/gh_464.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/gh_464.meta -------------------------------------------------------------------------------- /source/compiler/tests/gh_464.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/gh_464.pwn -------------------------------------------------------------------------------- /source/compiler/tests/gh_464_pcode.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/gh_464_pcode.meta -------------------------------------------------------------------------------- /source/compiler/tests/gh_464_pcode.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/gh_464_pcode.pwn -------------------------------------------------------------------------------- /source/compiler/tests/gh_466.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/gh_466.meta -------------------------------------------------------------------------------- /source/compiler/tests/gh_466.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/gh_466.pwn -------------------------------------------------------------------------------- /source/compiler/tests/gh_500.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/gh_500.meta -------------------------------------------------------------------------------- /source/compiler/tests/gh_500.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/gh_500.pwn -------------------------------------------------------------------------------- /source/compiler/tests/gh_514.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/gh_514.meta -------------------------------------------------------------------------------- /source/compiler/tests/gh_514.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/gh_514.pwn -------------------------------------------------------------------------------- /source/compiler/tests/gh_517.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/gh_517.meta -------------------------------------------------------------------------------- /source/compiler/tests/gh_517.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/gh_517.pwn -------------------------------------------------------------------------------- /source/compiler/tests/gh_517_pcode.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/gh_517_pcode.meta -------------------------------------------------------------------------------- /source/compiler/tests/gh_517_pcode.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/gh_517_pcode.pwn -------------------------------------------------------------------------------- /source/compiler/tests/gh_522.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/gh_522.meta -------------------------------------------------------------------------------- /source/compiler/tests/gh_522.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/gh_522.pwn -------------------------------------------------------------------------------- /source/compiler/tests/gh_525.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/gh_525.meta -------------------------------------------------------------------------------- /source/compiler/tests/gh_525.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/gh_525.pwn -------------------------------------------------------------------------------- /source/compiler/tests/gh_531.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/gh_531.meta -------------------------------------------------------------------------------- /source/compiler/tests/gh_531.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/gh_531.pwn -------------------------------------------------------------------------------- /source/compiler/tests/gh_541.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/gh_541.meta -------------------------------------------------------------------------------- /source/compiler/tests/gh_541.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/gh_541.pwn -------------------------------------------------------------------------------- /source/compiler/tests/gh_542.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/gh_542.meta -------------------------------------------------------------------------------- /source/compiler/tests/gh_542.pwn: -------------------------------------------------------------------------------- 1 | #pragma option -d0 2 | #assert false 3 | main(){} 4 | -------------------------------------------------------------------------------- /source/compiler/tests/gh_553.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/gh_553.meta -------------------------------------------------------------------------------- /source/compiler/tests/gh_553.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/gh_553.pwn -------------------------------------------------------------------------------- /source/compiler/tests/gh_557.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/gh_557.meta -------------------------------------------------------------------------------- /source/compiler/tests/gh_557.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/gh_557.pwn -------------------------------------------------------------------------------- /source/compiler/tests/gh_567.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/gh_567.meta -------------------------------------------------------------------------------- /source/compiler/tests/gh_567.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/gh_567.pwn -------------------------------------------------------------------------------- /source/compiler/tests/gh_574.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/gh_574.meta -------------------------------------------------------------------------------- /source/compiler/tests/gh_574.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/gh_574.pwn -------------------------------------------------------------------------------- /source/compiler/tests/gh_594.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/gh_594.meta -------------------------------------------------------------------------------- /source/compiler/tests/gh_594.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/gh_594.pwn -------------------------------------------------------------------------------- /source/compiler/tests/gh_597.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/gh_597.meta -------------------------------------------------------------------------------- /source/compiler/tests/gh_597.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/gh_597.pwn -------------------------------------------------------------------------------- /source/compiler/tests/gh_603.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/gh_603.meta -------------------------------------------------------------------------------- /source/compiler/tests/gh_603.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/gh_603.pwn -------------------------------------------------------------------------------- /source/compiler/tests/gh_642.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/gh_642.meta -------------------------------------------------------------------------------- /source/compiler/tests/gh_642.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/gh_642.pwn -------------------------------------------------------------------------------- /source/compiler/tests/gh_668.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/gh_668.meta -------------------------------------------------------------------------------- /source/compiler/tests/gh_668.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/gh_668.pwn -------------------------------------------------------------------------------- /source/compiler/tests/gh_685.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/gh_685.meta -------------------------------------------------------------------------------- /source/compiler/tests/gh_685.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/gh_685.pwn -------------------------------------------------------------------------------- /source/compiler/tests/gh_96.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/gh_96.meta -------------------------------------------------------------------------------- /source/compiler/tests/gh_96.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/gh_96.pwn -------------------------------------------------------------------------------- /source/compiler/tests/ignore_unknown_directives_gh_426.meta: -------------------------------------------------------------------------------- 1 | { 2 | 'test_type': 'output_check' 3 | } 4 | -------------------------------------------------------------------------------- /source/compiler/tests/multiline_strings.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/multiline_strings.meta -------------------------------------------------------------------------------- /source/compiler/tests/multiline_strings.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/multiline_strings.pwn -------------------------------------------------------------------------------- /source/compiler/tests/pcode_test_example.pwn: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | main() { 4 | printf("Hello World!"); 5 | } 6 | -------------------------------------------------------------------------------- /source/compiler/tests/pragma_warning_1.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/pragma_warning_1.meta -------------------------------------------------------------------------------- /source/compiler/tests/pragma_warning_1.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/pragma_warning_1.pwn -------------------------------------------------------------------------------- /source/compiler/tests/pragma_warning_2.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/pragma_warning_2.meta -------------------------------------------------------------------------------- /source/compiler/tests/pragma_warning_2.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/pragma_warning_2.pwn -------------------------------------------------------------------------------- /source/compiler/tests/pragma_warning_3.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/pragma_warning_3.meta -------------------------------------------------------------------------------- /source/compiler/tests/pragma_warning_3.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/pragma_warning_3.pwn -------------------------------------------------------------------------------- /source/compiler/tests/raw_error.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/raw_error.meta -------------------------------------------------------------------------------- /source/compiler/tests/raw_error.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/raw_error.pwn -------------------------------------------------------------------------------- /source/compiler/tests/run_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/run_tests.py -------------------------------------------------------------------------------- /source/compiler/tests/unreachable_code.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/unreachable_code.meta -------------------------------------------------------------------------------- /source/compiler/tests/unreachable_code.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/unreachable_code.pwn -------------------------------------------------------------------------------- /source/compiler/tests/warning_231.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/warning_231.meta -------------------------------------------------------------------------------- /source/compiler/tests/warning_231.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/warning_231.pwn -------------------------------------------------------------------------------- /source/compiler/tests/warning_240.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/warning_240.meta -------------------------------------------------------------------------------- /source/compiler/tests/warning_240.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/warning_240.pwn -------------------------------------------------------------------------------- /source/compiler/tests/warning_241_242.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/warning_241_242.meta -------------------------------------------------------------------------------- /source/compiler/tests/warning_241_242.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/warning_241_242.pwn -------------------------------------------------------------------------------- /source/compiler/tests/warning_243.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/warning_243.meta -------------------------------------------------------------------------------- /source/compiler/tests/warning_243.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/warning_243.pwn -------------------------------------------------------------------------------- /source/compiler/tests/warning_244.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/warning_244.meta -------------------------------------------------------------------------------- /source/compiler/tests/warning_244.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/warning_244.pwn -------------------------------------------------------------------------------- /source/compiler/tests/warning_245.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/warning_245.meta -------------------------------------------------------------------------------- /source/compiler/tests/warning_245.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/warning_245.pwn -------------------------------------------------------------------------------- /source/compiler/tests/warning_246.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/warning_246.meta -------------------------------------------------------------------------------- /source/compiler/tests/warning_246.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/warning_246.pwn -------------------------------------------------------------------------------- /source/compiler/tests/warning_247.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/warning_247.meta -------------------------------------------------------------------------------- /source/compiler/tests/warning_247.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/warning_247.pwn -------------------------------------------------------------------------------- /source/compiler/tests/warning_247_ovl.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/warning_247_ovl.meta -------------------------------------------------------------------------------- /source/compiler/tests/warning_247_ovl.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/warning_247_ovl.pwn -------------------------------------------------------------------------------- /source/compiler/tests/warning_248.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/warning_248.meta -------------------------------------------------------------------------------- /source/compiler/tests/warning_248.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/warning_248.pwn -------------------------------------------------------------------------------- /source/compiler/tests/warning_250_251.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/warning_250_251.meta -------------------------------------------------------------------------------- /source/compiler/tests/warning_250_251.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/warning_250_251.pwn -------------------------------------------------------------------------------- /source/compiler/tests/warning_252.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/warning_252.meta -------------------------------------------------------------------------------- /source/compiler/tests/warning_252.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/tests/warning_252.pwn -------------------------------------------------------------------------------- /source/compiler/version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/compiler/version.h.in -------------------------------------------------------------------------------- /source/linux/binreloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/linux/binreloc.c -------------------------------------------------------------------------------- /source/linux/binreloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/linux/binreloc.h -------------------------------------------------------------------------------- /source/linux/getch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/linux/getch.c -------------------------------------------------------------------------------- /source/linux/getch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/linux/getch.h -------------------------------------------------------------------------------- /source/linux/sclinux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/source/linux/sclinux.h -------------------------------------------------------------------------------- /xml/pawndoc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/xml/pawndoc.css -------------------------------------------------------------------------------- /xml/pawndoc.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmultiplayer/compiler/HEAD/xml/pawndoc.xsl --------------------------------------------------------------------------------