gitextract_zpfbl9ua/ ├── .gitignore ├── .hgignore ├── LICENSE ├── Makefile ├── README.md ├── common.mk ├── pass/ │ ├── IntrinsicLibcalls.h │ ├── LowerIntrinsics.cpp │ ├── Makefile │ └── Stabilizer.cpp ├── platforms/ │ ├── Darwin.i386.mk │ ├── Darwin.x86_64.mk │ ├── Linux.i386.mk │ ├── Linux.i686.mk │ ├── Linux.ppc.mk │ └── Linux.x86_64.mk ├── process.py ├── run.py ├── runtime/ │ ├── Arch.h │ ├── Context.h │ ├── Debug.cpp │ ├── Debug.h │ ├── Function.cpp │ ├── Function.h │ ├── FunctionLocation.h │ ├── Heap.cpp │ ├── Heap.h │ ├── Intrinsics.cpp │ ├── Jump.h │ ├── MMapSource.h │ ├── Makefile │ ├── MemRange.h │ ├── Trap.h │ ├── Util.h │ └── libstabilizer.cpp ├── szc ├── szchi.cfg ├── szclo.cfg └── tests/ ├── Context/ │ ├── Makefile │ ├── hello.cpp │ └── stub.asm ├── HelloWorld/ │ ├── Makefile │ └── hello.cpp ├── LICENSE ├── Makefile ├── bzip2/ │ ├── Makefile │ ├── blocksort.c │ ├── bzip2.c │ ├── bzlib.c │ ├── bzlib.h │ ├── bzlib_private.h │ ├── compress.c │ ├── crctable.c │ ├── decompress.c │ ├── huffman.c │ ├── input.combined │ ├── randtable.c │ ├── spec.c │ └── spec.h ├── libquantum/ │ ├── Makefile │ ├── classic.c │ ├── classic.h │ ├── complex.c │ ├── config.h │ ├── decoherence.c │ ├── decoherence.h │ ├── defs.h │ ├── expn.c │ ├── gates.c │ ├── gates.h │ ├── lq_complex.h │ ├── matrix.c │ ├── matrix.h │ ├── measure.c │ ├── measure.h │ ├── oaddn.c │ ├── oaddn.h │ ├── objcode.c │ ├── objcode.h │ ├── omuln.c │ ├── omuln.h │ ├── qec.c │ ├── qec.h │ ├── qft.c │ ├── quantum.h │ ├── qureg.c │ ├── qureg.h │ ├── shor.c │ ├── specrand.c │ ├── specrand.h │ └── version.c └── perlbench/ ├── Base64.c ├── Cwd.c ├── Dumper.c ├── DynaLoader.c ├── EXTERN.h ├── HiRes.c ├── Hostname.c ├── INTERN.h ├── IO.c ├── MD5.c ├── Makefile ├── Opcode.c ├── Parser.c ├── Peek.c ├── Storable.c ├── WORDS ├── XSUB.h ├── attrs.c ├── av.c ├── av.h ├── config.h ├── const-c.inc ├── cop.h ├── cpu2006_mhonarc.rc ├── cv.h ├── deb.c ├── dictionary ├── doio.c ├── doop.c ├── dump.c ├── embed.h ├── embedvar.h ├── fakesdio.h ├── fakethr.h ├── form.h ├── globals.c ├── gv.c ├── gv.h ├── handy.h ├── hctype.h ├── hparser.c ├── hparser.h ├── hv.c ├── hv.h ├── input/ │ ├── checkspam.pl │ ├── diffmail.in │ ├── diffmail.pl │ ├── perfect.in │ ├── perfect.pl │ ├── scrabbl.in │ ├── scrabbl.pl │ ├── splitmail.in │ ├── splitmail.pl │ └── suns.pl ├── intrpvar.h ├── iperlsys.h ├── keywords.h ├── lib/ │ ├── AutoLoader.pm │ ├── Carp/ │ │ └── Heavy.pm │ ├── Carp.pm │ ├── Config.pm │ ├── Cwd.pm │ ├── DB_File.pm │ ├── Date/ │ │ ├── Format.pm │ │ ├── Language/ │ │ │ ├── Afar.pm │ │ │ ├── Amharic.pm │ │ │ ├── Austrian.pm │ │ │ ├── Brazilian.pm │ │ │ ├── Chinese_GB.pm │ │ │ ├── Czech.pm │ │ │ ├── Danish.pm │ │ │ ├── Dutch.pm │ │ │ ├── English.pm │ │ │ ├── Finnish.pm │ │ │ ├── French.pm │ │ │ ├── Gedeo.pm │ │ │ ├── German.pm │ │ │ ├── Greek.pm │ │ │ ├── Italian.pm │ │ │ ├── Norwegian.pm │ │ │ ├── Oromo.pm │ │ │ ├── Sidama.pm │ │ │ ├── Somali.pm │ │ │ ├── Swedish.pm │ │ │ ├── Tigrinya.pm │ │ │ ├── TigrinyaEritrean.pm │ │ │ └── TigrinyaEthiopian.pm │ │ ├── Language.pm │ │ └── Parse.pm │ ├── Digest/ │ │ └── MD5.pm │ ├── DynaLoader.pm │ ├── Exporter/ │ │ └── Heavy.pm │ ├── Exporter.pm │ ├── Fcntl.pm │ ├── File/ │ │ ├── Basename.pm │ │ ├── CheckTree.pm │ │ ├── Compare.pm │ │ ├── Copy.pm │ │ ├── DosGlob.pm │ │ ├── Find.pm │ │ ├── Path.pm │ │ ├── Spec/ │ │ │ ├── Epoc.pm │ │ │ ├── Functions.pm │ │ │ ├── Mac.pm │ │ │ ├── OS2.pm │ │ │ ├── Unix.pm │ │ │ ├── VMS.pm │ │ │ └── Win32.pm │ │ ├── Spec.pm │ │ ├── Temp.pm │ │ └── stat.pm │ ├── FileCache.pm │ ├── FileHandle.pm │ ├── Getopt/ │ │ ├── Long.pm │ │ └── Std.pm │ ├── HTML/ │ │ ├── Entities.pm │ │ ├── Filter.pm │ │ ├── HeadParser.pm │ │ ├── LinkExtor.pm │ │ ├── Parser.pm │ │ ├── PullParser.pm │ │ └── TokeParser.pm │ ├── IO/ │ │ ├── File.pm │ │ ├── Scalar.pm │ │ └── Socket/ │ │ ├── INET.pm │ │ └── UNIX.pm │ ├── MHonArc/ │ │ ├── Char/ │ │ │ ├── JP.pm │ │ │ └── KR.pm │ │ ├── Char.pm │ │ ├── CharEnt/ │ │ │ ├── AppleArabic.pm │ │ │ ├── AppleCenteuro.pm │ │ │ ├── AppleCroatian.pm │ │ │ ├── AppleCyrillic.pm │ │ │ ├── AppleGreek.pm │ │ │ ├── AppleHebrew.pm │ │ │ ├── AppleIceland.pm │ │ │ ├── AppleRoman.pm │ │ │ ├── AppleRomanian.pm │ │ │ ├── AppleThai.pm │ │ │ ├── AppleTurkish.pm │ │ │ ├── BIG5_ETEN.pm │ │ │ ├── BIG5_HKSCS.pm │ │ │ ├── CP1250.pm │ │ │ ├── CP1251.pm │ │ │ ├── CP1252.pm │ │ │ ├── CP1253.pm │ │ │ ├── CP1254.pm │ │ │ ├── CP1255.pm │ │ │ ├── CP1256.pm │ │ │ ├── CP1257.pm │ │ │ ├── CP1258.pm │ │ │ ├── CP866.pm │ │ │ ├── CP932.pm │ │ │ ├── CP936.pm │ │ │ ├── CP949.pm │ │ │ ├── CP950.pm │ │ │ ├── EUC_JP.pm │ │ │ ├── GB2312.pm │ │ │ ├── GOST19768_87.pm │ │ │ ├── HP_ROMAN8.pm │ │ │ ├── ISO8859_1.pm │ │ │ ├── ISO8859_10.pm │ │ │ ├── ISO8859_11.pm │ │ │ ├── ISO8859_13.pm │ │ │ ├── ISO8859_14.pm │ │ │ ├── ISO8859_15.pm │ │ │ ├── ISO8859_16.pm │ │ │ ├── ISO8859_2.pm │ │ │ ├── ISO8859_3.pm │ │ │ ├── ISO8859_4.pm │ │ │ ├── ISO8859_5.pm │ │ │ ├── ISO8859_6.pm │ │ │ ├── ISO8859_7.pm │ │ │ ├── ISO8859_8.pm │ │ │ ├── ISO8859_9.pm │ │ │ ├── KOI8_A.pm │ │ │ ├── KOI8_B.pm │ │ │ ├── KOI8_E.pm │ │ │ ├── KOI8_F.pm │ │ │ ├── KOI8_R.pm │ │ │ ├── KOI8_U.pm │ │ │ ├── KOI_0.pm │ │ │ ├── KOI_7.pm │ │ │ └── VISCII.pm │ │ ├── CharEnt.pm │ │ ├── CharMaps.pm │ │ ├── Encode.pm │ │ ├── RFC822.pm │ │ ├── UTF8/ │ │ │ ├── AppleArabic.pm │ │ │ ├── AppleCenteuro.pm │ │ │ ├── AppleCroatian.pm │ │ │ ├── AppleCyrillic.pm │ │ │ ├── AppleGreek.pm │ │ │ ├── AppleHebrew.pm │ │ │ ├── AppleIceland.pm │ │ │ ├── AppleRoman.pm │ │ │ ├── AppleRomanian.pm │ │ │ ├── AppleThai.pm │ │ │ ├── AppleTurkish.pm │ │ │ ├── BIG5_ETEN.pm │ │ │ ├── BIG5_HKSCS.pm │ │ │ ├── CP1250.pm │ │ │ ├── CP1251.pm │ │ │ ├── CP1252.pm │ │ │ ├── CP1253.pm │ │ │ ├── CP1254.pm │ │ │ ├── CP1255.pm │ │ │ ├── CP1256.pm │ │ │ ├── CP1257.pm │ │ │ ├── CP1258.pm │ │ │ ├── CP866.pm │ │ │ ├── CP932.pm │ │ │ ├── CP936.pm │ │ │ ├── CP949.pm │ │ │ ├── CP950.pm │ │ │ ├── EUC_JP.pm │ │ │ ├── Encode.pm │ │ │ ├── GB2312.pm │ │ │ ├── GOST19768_87.pm │ │ │ ├── HP_ROMAN8.pm │ │ │ ├── ISO8859_1.pm │ │ │ ├── ISO8859_10.pm │ │ │ ├── ISO8859_11.pm │ │ │ ├── ISO8859_13.pm │ │ │ ├── ISO8859_14.pm │ │ │ ├── ISO8859_15.pm │ │ │ ├── ISO8859_16.pm │ │ │ ├── ISO8859_2.pm │ │ │ ├── ISO8859_3.pm │ │ │ ├── ISO8859_4.pm │ │ │ ├── ISO8859_5.pm │ │ │ ├── ISO8859_6.pm │ │ │ ├── ISO8859_7.pm │ │ │ ├── ISO8859_8.pm │ │ │ ├── ISO8859_9.pm │ │ │ ├── KOI8_A.pm │ │ │ ├── KOI8_B.pm │ │ │ ├── KOI8_E.pm │ │ │ ├── KOI8_F.pm │ │ │ ├── KOI8_R.pm │ │ │ ├── KOI8_U.pm │ │ │ ├── KOI_0.pm │ │ │ ├── KOI_7.pm │ │ │ ├── MapUTF8.pm │ │ │ ├── MhaEncode.pm │ │ │ └── VISCII.pm │ │ └── UTF8.pm │ ├── MIME/ │ │ ├── Base64.pm │ │ └── QuotedPrint.pm │ ├── Mail/ │ │ ├── Header.pm │ │ ├── SpamAssassin/ │ │ │ ├── ArchiveIterator.pm │ │ │ ├── AuditMessage.pm │ │ │ ├── AutoWhitelist.pm │ │ │ ├── Bayes.pm │ │ │ ├── BayesStore.pm │ │ │ ├── CmdLearn.pm │ │ │ ├── Conf.pm │ │ │ ├── DBBasedAddrList.pm │ │ │ ├── Dns.pm │ │ │ ├── EncappedMIME.pm │ │ │ ├── EncappedMessage.pm │ │ │ ├── EvalTests.pm │ │ │ ├── HTML.pm │ │ │ ├── Locales.pm │ │ │ ├── Locker.pm │ │ │ ├── MailingList.pm │ │ │ ├── Message.pm │ │ │ ├── NetSet.pm │ │ │ ├── NoLocker.pm │ │ │ ├── NoMailAudit.pm │ │ │ ├── PerMsgLearner.pm │ │ │ ├── PerMsgStatus.pm │ │ │ ├── PersistentAddrList.pm │ │ │ ├── PhraseFreqs.pm │ │ │ ├── Received.pm │ │ │ ├── Replier.pm │ │ │ ├── Reporter.pm │ │ │ ├── SHA1.pm │ │ │ ├── TextCat.pm │ │ │ └── Util.pm │ │ ├── SpamAssassin.pm │ │ └── Util.pm │ ├── Math/ │ │ ├── BigFloat/ │ │ │ └── Trace.pm │ │ ├── BigFloat.pm │ │ ├── BigInt/ │ │ │ ├── Calc.pm │ │ │ ├── CalcEmu.pm │ │ │ ├── Scalar.pm │ │ │ └── Trace.pm │ │ ├── BigInt.pm │ │ ├── BigRat.pm │ │ ├── Complex.pm │ │ └── Trig.pm │ ├── Search/ │ │ ├── Dict.pm │ │ └── Dict.t │ ├── Storable.pm │ ├── Symbol.pm │ ├── Text/ │ │ ├── Tabs.pm │ │ └── Wrap.pm │ ├── Time/ │ │ ├── Local.pm │ │ ├── Zone.pm │ │ ├── gmtime.pm │ │ ├── localtime.pm │ │ └── tm.pm │ ├── Unicode/ │ │ ├── Collate/ │ │ │ ├── Changes │ │ │ ├── README │ │ │ └── keys.txt │ │ ├── Collate.pm │ │ ├── Normalize.pm │ │ ├── README │ │ ├── UCD.pm │ │ └── UCD.t │ ├── abbrev.pl │ ├── assert.pl │ ├── attributes.pm │ ├── auto/ │ │ └── Storable/ │ │ └── autosplit.ix │ ├── autouse.pm │ ├── base.pm │ ├── base64.pl │ ├── bigfloat.pl │ ├── bigint.pl │ ├── bigrat.pl │ ├── blib.pm │ ├── bytes.pm │ ├── bytes_heavy.pl │ ├── cacheout.pl │ ├── charnames.pm │ ├── chat2.pl │ ├── compare.pm │ ├── complete.pl │ ├── constant.pm │ ├── ctime.pl │ ├── diagnostics.pm │ ├── dotsh.pl │ ├── dumpvar.pl │ ├── ewhutil.pl │ ├── exceptions.pl │ ├── fastcwd.pl │ ├── fields.pm │ ├── filetest.pm │ ├── find.pl │ ├── finddepth.pl │ ├── flush.pl │ ├── ftp.pl │ ├── getcwd.pl │ ├── getopt.pl │ ├── getopts.pl │ ├── ham.pl │ ├── hostname.pl │ ├── importenv.pl │ ├── integer.pm │ ├── iso2022jp.pl │ ├── iso8859.pl │ ├── less.pm │ ├── lib.pm │ ├── locale.pm │ ├── look.pl │ ├── mailcomp.pm │ ├── mhamain.pl │ ├── mhdb.pl │ ├── mhdysub.pl │ ├── mhexternal.pl │ ├── mhfile.pl │ ├── mhidxrc.pl │ ├── mhindex.pl │ ├── mhinit.pl │ ├── mhlock.pl │ ├── mhmimetypes.pl │ ├── mhmsgextbody.pl │ ├── mhmsgfile.pl │ ├── mhnote.pl │ ├── mhnull.pl │ ├── mhopt.pl │ ├── mhrcfile.pl │ ├── mhrcvars.pl │ ├── mhrmm.pl │ ├── mhscan.pl │ ├── mhsingle.pl │ ├── mhthread.pl │ ├── mhtime.pl │ ├── mhtxtenrich.pl │ ├── mhtxthtml.pl │ ├── mhtxtplain.pl │ ├── mhtxttsv.pl │ ├── mhusage.pl │ ├── mhutil.pl │ ├── mungewords │ ├── newgetopt.pl │ ├── open.pm │ ├── open2.pl │ ├── open3.pl │ ├── osinit.pl │ ├── overload.pm │ ├── perl5db.pl │ ├── pwd.pl │ ├── qprint.pl │ ├── re.pm │ ├── readmail.pl │ ├── shellwords.pl │ ├── sigtrap.pm │ ├── spam.pl │ ├── specdiff.pm │ ├── stat.pl │ ├── strict.pm │ ├── subs.pm │ ├── syslog.pl │ ├── tainted.pl │ ├── termcap.pl │ ├── timelocal.pl │ ├── unicore/ │ │ ├── ArabLink.pl │ │ ├── ArabLnkGrp.pl │ │ ├── ArabicShaping.txt │ │ ├── BidiMirroring.txt │ │ ├── Bidirectional.pl │ │ ├── Blocks.pl │ │ ├── Blocks.txt │ │ ├── Canonical.pl │ │ ├── CaseFolding.txt │ │ ├── Category.pl │ │ ├── CombiningClass.pl │ │ ├── CompositionExclusions.txt │ │ ├── Decomposition.pl │ │ ├── EastAsianWidth.txt │ │ ├── Exact.pl │ │ ├── HangulSyllableType.txt │ │ ├── Index.txt │ │ ├── Jamo.txt │ │ ├── JamoShort.pl │ │ ├── Lbrk.pl │ │ ├── LineBreak.txt │ │ ├── Makefile │ │ ├── Name.pl │ │ ├── NamesList.txt │ │ ├── NormalizationCorrections.txt │ │ ├── Number.pl │ │ ├── PVA.pl │ │ ├── PropList.txt │ │ ├── PropValueAliases.txt │ │ ├── Properties │ │ ├── PropertyAliases.txt │ │ ├── README.perl │ │ ├── ReadMe.txt │ │ ├── Scripts.pl │ │ ├── Scripts.txt │ │ ├── SpecialCasing.txt │ │ ├── StandardizedVariants.txt │ │ ├── To/ │ │ │ ├── Digit.pl │ │ │ ├── Fold.pl │ │ │ ├── Lower.pl │ │ │ ├── Title.pl │ │ │ └── Upper.pl │ │ ├── UnicodeData.txt │ │ ├── lib/ │ │ │ ├── ASCII.pl │ │ │ ├── Alnum.pl │ │ │ ├── Alpha.pl │ │ │ ├── Alphabet.pl │ │ │ ├── Any.pl │ │ │ ├── Arabic.pl │ │ │ ├── Armenian.pl │ │ │ ├── AsciiHex.pl │ │ │ ├── Assigned.pl │ │ │ ├── Bengali.pl │ │ │ ├── BidiAL.pl │ │ │ ├── BidiAN.pl │ │ │ ├── BidiB.pl │ │ │ ├── BidiBN.pl │ │ │ ├── BidiCS.pl │ │ │ ├── BidiCont.pl │ │ │ ├── BidiEN.pl │ │ │ ├── BidiES.pl │ │ │ ├── BidiET.pl │ │ │ ├── BidiL.pl │ │ │ ├── BidiLRE.pl │ │ │ ├── BidiLRO.pl │ │ │ ├── BidiNSM.pl │ │ │ ├── BidiON.pl │ │ │ ├── BidiPDF.pl │ │ │ ├── BidiR.pl │ │ │ ├── BidiRLE.pl │ │ │ ├── BidiRLO.pl │ │ │ ├── BidiS.pl │ │ │ ├── BidiWS.pl │ │ │ ├── Blank.pl │ │ │ ├── Bopomofo.pl │ │ │ ├── Braille.pl │ │ │ ├── Buhid.pl │ │ │ ├── C.pl │ │ │ ├── Canadian.pl │ │ │ ├── Canon.pl │ │ │ ├── Cc.pl │ │ │ ├── Cf.pl │ │ │ ├── Cherokee.pl │ │ │ ├── Cn.pl │ │ │ ├── Cntrl.pl │ │ │ ├── Co.pl │ │ │ ├── Common.pl │ │ │ ├── Compat.pl │ │ │ ├── Cs.pl │ │ │ ├── Cypriot.pl │ │ │ ├── Cyrillic.pl │ │ │ ├── DCcircle.pl │ │ │ ├── DCcompat.pl │ │ │ ├── DCfinal.pl │ │ │ ├── DCfont.pl │ │ │ ├── DCfracti.pl │ │ │ ├── DCinitia.pl │ │ │ ├── DCisolat.pl │ │ │ ├── DCmedial.pl │ │ │ ├── DCnarrow.pl │ │ │ ├── DCnoBrea.pl │ │ │ ├── DCsmall.pl │ │ │ ├── DCsquare.pl │ │ │ ├── DCsub.pl │ │ │ ├── DCsuper.pl │ │ │ ├── DCvertic.pl │ │ │ ├── DCwide.pl │ │ │ ├── Dash.pl │ │ │ ├── Deprecat.pl │ │ │ ├── Deseret.pl │ │ │ ├── Devanaga.pl │ │ │ ├── Diacriti.pl │ │ │ ├── Digit.pl │ │ │ ├── Ethiopic.pl │ │ │ ├── Extender.pl │ │ │ ├── Georgian.pl │ │ │ ├── Gothic.pl │ │ │ ├── Graph.pl │ │ │ ├── Grapheme.pl │ │ │ ├── Greek.pl │ │ │ ├── Gujarati.pl │ │ │ ├── Gurmukhi.pl │ │ │ ├── Han.pl │ │ │ ├── Hangul.pl │ │ │ ├── Hanunoo.pl │ │ │ ├── Hebrew.pl │ │ │ ├── HexDigit.pl │ │ │ ├── Hiragana.pl │ │ │ ├── Hyphen.pl │ │ │ ├── IdContin.pl │ │ │ ├── IdStart.pl │ │ │ ├── Ideograp.pl │ │ │ ├── IdsBinar.pl │ │ │ ├── IdsTrina.pl │ │ │ ├── InAegean.pl │ │ │ ├── InAlphab.pl │ │ │ ├── InArabi2.pl │ │ │ ├── InArabi3.pl │ │ │ ├── InArabic.pl │ │ │ ├── InArmeni.pl │ │ │ ├── InArrows.pl │ │ │ ├── InBasicL.pl │ │ │ ├── InBengal.pl │ │ │ ├── InBlockE.pl │ │ │ ├── InBopom2.pl │ │ │ ├── InBopomo.pl │ │ │ ├── InBoxDra.pl │ │ │ ├── InBraill.pl │ │ │ ├── InBuhid.pl │ │ │ ├── InByzant.pl │ │ │ ├── InCherok.pl │ │ │ ├── InCjkCo2.pl │ │ │ ├── InCjkCo3.pl │ │ │ ├── InCjkCo4.pl │ │ │ ├── InCjkCom.pl │ │ │ ├── InCjkRad.pl │ │ │ ├── InCjkSym.pl │ │ │ ├── InCjkUn2.pl │ │ │ ├── InCjkUn3.pl │ │ │ ├── InCjkUni.pl │ │ │ ├── InCombi2.pl │ │ │ ├── InCombi3.pl │ │ │ ├── InCombin.pl │ │ │ ├── InContro.pl │ │ │ ├── InCurren.pl │ │ │ ├── InCyprio.pl │ │ │ ├── InCyril2.pl │ │ │ ├── InCyrill.pl │ │ │ ├── InDesere.pl │ │ │ ├── InDevana.pl │ │ │ ├── InDingba.pl │ │ │ ├── InEnclo2.pl │ │ │ ├── InEnclos.pl │ │ │ ├── InEthiop.pl │ │ │ ├── InGenera.pl │ │ │ ├── InGeomet.pl │ │ │ ├── InGeorgi.pl │ │ │ ├── InGothic.pl │ │ │ ├── InGreek.pl │ │ │ ├── InGreekA.pl │ │ │ ├── InGreekE.pl │ │ │ ├── InGujara.pl │ │ │ ├── InGurmuk.pl │ │ │ ├── InHalfwi.pl │ │ │ ├── InHangu2.pl │ │ │ ├── InHangu3.pl │ │ │ ├── InHangul.pl │ │ │ ├── InHanuno.pl │ │ │ ├── InHebrew.pl │ │ │ ├── InHighPr.pl │ │ │ ├── InHighSu.pl │ │ │ ├── InHiraga.pl │ │ │ ├── InIdeogr.pl │ │ │ ├── InIpaExt.pl │ │ │ ├── InKanbun.pl │ │ │ ├── InKangxi.pl │ │ │ ├── InKannad.pl │ │ │ ├── InKatak2.pl │ │ │ ├── InKataka.pl │ │ │ ├── InKhmer.pl │ │ │ ├── InKhmerS.pl │ │ │ ├── InLao.pl │ │ │ ├── InLatin1.pl │ │ │ ├── InLatin2.pl │ │ │ ├── InLatin3.pl │ │ │ ├── InLatinE.pl │ │ │ ├── InLetter.pl │ │ │ ├── InLimbu.pl │ │ │ ├── InLinea2.pl │ │ │ ├── InLinear.pl │ │ │ ├── InLowSur.pl │ │ │ ├── InMalaya.pl │ │ │ ├── InMathe2.pl │ │ │ ├── InMathem.pl │ │ │ ├── InMisce2.pl │ │ │ ├── InMisce3.pl │ │ │ ├── InMisce4.pl │ │ │ ├── InMisce5.pl │ │ │ ├── InMiscel.pl │ │ │ ├── InMongol.pl │ │ │ ├── InMusica.pl │ │ │ ├── InMyanma.pl │ │ │ ├── InNumber.pl │ │ │ ├── InOgham.pl │ │ │ ├── InOldIta.pl │ │ │ ├── InOptica.pl │ │ │ ├── InOriya.pl │ │ │ ├── InOsmany.pl │ │ │ ├── InPhonet.pl │ │ │ ├── InPrivat.pl │ │ │ ├── InRunic.pl │ │ │ ├── InShavia.pl │ │ │ ├── InSinhal.pl │ │ │ ├── InSmallF.pl │ │ │ ├── InSpacin.pl │ │ │ ├── InSpecia.pl │ │ │ ├── InSupers.pl │ │ │ ├── InSuppl2.pl │ │ │ ├── InSuppl3.pl │ │ │ ├── InSuppl4.pl │ │ │ ├── InSuppl5.pl │ │ │ ├── InSupple.pl │ │ │ ├── InSyriac.pl │ │ │ ├── InTagalo.pl │ │ │ ├── InTagban.pl │ │ │ ├── InTags.pl │ │ │ ├── InTaiLe.pl │ │ │ ├── InTaiXua.pl │ │ │ ├── InTamil.pl │ │ │ ├── InTelugu.pl │ │ │ ├── InThaana.pl │ │ │ ├── InThai.pl │ │ │ ├── InTibeta.pl │ │ │ ├── InUgarit.pl │ │ │ ├── InUnifie.pl │ │ │ ├── InVaria2.pl │ │ │ ├── InVariat.pl │ │ │ ├── InYiRadi.pl │ │ │ ├── InYiSyll.pl │ │ │ ├── InYijing.pl │ │ │ ├── Inherite.pl │ │ │ ├── JoinCont.pl │ │ │ ├── Kannada.pl │ │ │ ├── Katakana.pl │ │ │ ├── Khmer.pl │ │ │ ├── L.pl │ │ │ ├── L_.pl │ │ │ ├── Lao.pl │ │ │ ├── Latin.pl │ │ │ ├── Limbu.pl │ │ │ ├── LinearB.pl │ │ │ ├── Ll.pl │ │ │ ├── Lm.pl │ │ │ ├── Lo.pl │ │ │ ├── LogicalO.pl │ │ │ ├── Lower.pl │ │ │ ├── Lowercas.pl │ │ │ ├── Lt.pl │ │ │ ├── Lu.pl │ │ │ ├── M.pl │ │ │ ├── Malayala.pl │ │ │ ├── Math.pl │ │ │ ├── Mc.pl │ │ │ ├── Me.pl │ │ │ ├── Mirrored.pl │ │ │ ├── Mn.pl │ │ │ ├── Mongolia.pl │ │ │ ├── Myanmar.pl │ │ │ ├── N.pl │ │ │ ├── Nd.pl │ │ │ ├── Nl.pl │ │ │ ├── No.pl │ │ │ ├── Nonchara.pl │ │ │ ├── Ogham.pl │ │ │ ├── OldItali.pl │ │ │ ├── Oriya.pl │ │ │ ├── Osmanya.pl │ │ │ ├── OtherAlp.pl │ │ │ ├── OtherDef.pl │ │ │ ├── OtherGra.pl │ │ │ ├── OtherIdS.pl │ │ │ ├── OtherLow.pl │ │ │ ├── OtherMat.pl │ │ │ ├── OtherUpp.pl │ │ │ ├── P.pl │ │ │ ├── Pc.pl │ │ │ ├── Pd.pl │ │ │ ├── Pe.pl │ │ │ ├── Pf.pl │ │ │ ├── Pi.pl │ │ │ ├── Po.pl │ │ │ ├── Print.pl │ │ │ ├── Ps.pl │ │ │ ├── Punct.pl │ │ │ ├── Quotatio.pl │ │ │ ├── Radical.pl │ │ │ ├── Runic.pl │ │ │ ├── S.pl │ │ │ ├── Sc.pl │ │ │ ├── Shavian.pl │ │ │ ├── Sinhala.pl │ │ │ ├── Sk.pl │ │ │ ├── Sm.pl │ │ │ ├── So.pl │ │ │ ├── SoftDott.pl │ │ │ ├── Space.pl │ │ │ ├── SpacePer.pl │ │ │ ├── Syriac.pl │ │ │ ├── Tagalog.pl │ │ │ ├── Tagbanwa.pl │ │ │ ├── TaiLe.pl │ │ │ ├── Tamil.pl │ │ │ ├── Telugu.pl │ │ │ ├── Terminal.pl │ │ │ ├── Thaana.pl │ │ │ ├── Thai.pl │ │ │ ├── Tibetan.pl │ │ │ ├── Title.pl │ │ │ ├── Ugaritic.pl │ │ │ ├── UnifiedI.pl │ │ │ ├── Upper.pl │ │ │ ├── Uppercas.pl │ │ │ ├── WhiteSpa.pl │ │ │ ├── Word.pl │ │ │ ├── XDigit.pl │ │ │ ├── Yi.pl │ │ │ ├── Z.pl │ │ │ ├── Zl.pl │ │ │ ├── Zp.pl │ │ │ ├── Zs.pl │ │ │ ├── _CanonDC.pl │ │ │ ├── _CaseIgn.pl │ │ │ ├── _CombAbo.pl │ │ │ ├── bc/ │ │ │ │ ├── AL.pl │ │ │ │ ├── AN.pl │ │ │ │ ├── B.pl │ │ │ │ ├── BN.pl │ │ │ │ ├── CS.pl │ │ │ │ ├── EN.pl │ │ │ │ ├── ES.pl │ │ │ │ ├── ET.pl │ │ │ │ ├── L.pl │ │ │ │ ├── LRE.pl │ │ │ │ ├── LRO.pl │ │ │ │ ├── NSM.pl │ │ │ │ ├── ON.pl │ │ │ │ ├── PDF.pl │ │ │ │ ├── R.pl │ │ │ │ ├── RLE.pl │ │ │ │ ├── RLO.pl │ │ │ │ ├── S.pl │ │ │ │ └── WS.pl │ │ │ ├── ccc/ │ │ │ │ ├── A.pl │ │ │ │ ├── AL.pl │ │ │ │ ├── AR.pl │ │ │ │ ├── ATAR.pl │ │ │ │ ├── ATB.pl │ │ │ │ ├── ATBL.pl │ │ │ │ ├── B.pl │ │ │ │ ├── BL.pl │ │ │ │ ├── BR.pl │ │ │ │ ├── DA.pl │ │ │ │ ├── DB.pl │ │ │ │ ├── IS.pl │ │ │ │ ├── KV.pl │ │ │ │ ├── L.pl │ │ │ │ ├── NK.pl │ │ │ │ ├── NR.pl │ │ │ │ ├── OV.pl │ │ │ │ ├── R.pl │ │ │ │ └── VR.pl │ │ │ ├── dt/ │ │ │ │ ├── can.pl │ │ │ │ ├── com.pl │ │ │ │ ├── enc.pl │ │ │ │ ├── fin.pl │ │ │ │ ├── font.pl │ │ │ │ ├── fra.pl │ │ │ │ ├── init.pl │ │ │ │ ├── iso.pl │ │ │ │ ├── med.pl │ │ │ │ ├── nar.pl │ │ │ │ ├── nb.pl │ │ │ │ ├── sml.pl │ │ │ │ ├── sqr.pl │ │ │ │ ├── sub.pl │ │ │ │ ├── sup.pl │ │ │ │ ├── vert.pl │ │ │ │ └── wide.pl │ │ │ ├── ea/ │ │ │ │ ├── A.pl │ │ │ │ ├── F.pl │ │ │ │ ├── H.pl │ │ │ │ ├── N.pl │ │ │ │ ├── Na.pl │ │ │ │ └── W.pl │ │ │ ├── gc_sc/ │ │ │ │ ├── AHex.pl │ │ │ │ ├── ASCII.pl │ │ │ │ ├── Alnum.pl │ │ │ │ ├── Alpha.pl │ │ │ │ ├── Alphabet.pl │ │ │ │ ├── Any.pl │ │ │ │ ├── Arab.pl │ │ │ │ ├── Armn.pl │ │ │ │ ├── AsciiHex.pl │ │ │ │ ├── Assigned.pl │ │ │ │ ├── Beng.pl │ │ │ │ ├── BidiC.pl │ │ │ │ ├── BidiCont.pl │ │ │ │ ├── Blank.pl │ │ │ │ ├── Bopo.pl │ │ │ │ ├── Brai.pl │ │ │ │ ├── Buhd.pl │ │ │ │ ├── C.pl │ │ │ │ ├── Canadian.pl │ │ │ │ ├── Cc.pl │ │ │ │ ├── Cf.pl │ │ │ │ ├── Cher.pl │ │ │ │ ├── Cn.pl │ │ │ │ ├── Cntrl.pl │ │ │ │ ├── Co.pl │ │ │ │ ├── Cprt.pl │ │ │ │ ├── Cs.pl │ │ │ │ ├── Cyrl.pl │ │ │ │ ├── Dash.pl │ │ │ │ ├── Dash2.pl │ │ │ │ ├── Dep.pl │ │ │ │ ├── Deprecat.pl │ │ │ │ ├── Deva.pl │ │ │ │ ├── Dia.pl │ │ │ │ ├── Diacriti.pl │ │ │ │ ├── Digit.pl │ │ │ │ ├── Dsrt.pl │ │ │ │ ├── Ethi.pl │ │ │ │ ├── Ext.pl │ │ │ │ ├── Extender.pl │ │ │ │ ├── Geor.pl │ │ │ │ ├── Goth.pl │ │ │ │ ├── GrLink.pl │ │ │ │ ├── Graph.pl │ │ │ │ ├── Grapheme.pl │ │ │ │ ├── Grek.pl │ │ │ │ ├── Gujr.pl │ │ │ │ ├── Guru.pl │ │ │ │ ├── Hang.pl │ │ │ │ ├── Hani.pl │ │ │ │ ├── Hano.pl │ │ │ │ ├── Hebr.pl │ │ │ │ ├── Hex.pl │ │ │ │ ├── HexDigit.pl │ │ │ │ ├── Hira.pl │ │ │ │ ├── Hyphen.pl │ │ │ │ ├── Hyphen2.pl │ │ │ │ ├── IDSB.pl │ │ │ │ ├── IDST.pl │ │ │ │ ├── IdContin.pl │ │ │ │ ├── IdStart.pl │ │ │ │ ├── Ideo.pl │ │ │ │ ├── Ideograp.pl │ │ │ │ ├── IdsBinar.pl │ │ │ │ ├── IdsTrina.pl │ │ │ │ ├── InAegean.pl │ │ │ │ ├── InAlphab.pl │ │ │ │ ├── InArabi2.pl │ │ │ │ ├── InArabi3.pl │ │ │ │ ├── InArabic.pl │ │ │ │ ├── InArmeni.pl │ │ │ │ ├── InArrows.pl │ │ │ │ ├── InBasicL.pl │ │ │ │ ├── InBengal.pl │ │ │ │ ├── InBlockE.pl │ │ │ │ ├── InBopom2.pl │ │ │ │ ├── InBopomo.pl │ │ │ │ ├── InBoxDra.pl │ │ │ │ ├── InBraill.pl │ │ │ │ ├── InBuhid.pl │ │ │ │ ├── InByzant.pl │ │ │ │ ├── InCherok.pl │ │ │ │ ├── InCjkCo2.pl │ │ │ │ ├── InCjkCo3.pl │ │ │ │ ├── InCjkCo4.pl │ │ │ │ ├── InCjkCom.pl │ │ │ │ ├── InCjkRad.pl │ │ │ │ ├── InCjkSym.pl │ │ │ │ ├── InCjkUn2.pl │ │ │ │ ├── InCjkUn3.pl │ │ │ │ ├── InCjkUni.pl │ │ │ │ ├── InCombi2.pl │ │ │ │ ├── InCombi3.pl │ │ │ │ ├── InCombin.pl │ │ │ │ ├── InContro.pl │ │ │ │ ├── InCurren.pl │ │ │ │ ├── InCyprio.pl │ │ │ │ ├── InCyril2.pl │ │ │ │ ├── InCyrill.pl │ │ │ │ ├── InDesere.pl │ │ │ │ ├── InDevana.pl │ │ │ │ ├── InDingba.pl │ │ │ │ ├── InEnclo2.pl │ │ │ │ ├── InEnclos.pl │ │ │ │ ├── InEthiop.pl │ │ │ │ ├── InGenera.pl │ │ │ │ ├── InGeomet.pl │ │ │ │ ├── InGeorgi.pl │ │ │ │ ├── InGothic.pl │ │ │ │ ├── InGreekA.pl │ │ │ │ ├── InGreekE.pl │ │ │ │ ├── InGujara.pl │ │ │ │ ├── InGurmuk.pl │ │ │ │ ├── InHalfwi.pl │ │ │ │ ├── InHangu2.pl │ │ │ │ ├── InHangu3.pl │ │ │ │ ├── InHangul.pl │ │ │ │ ├── InHanuno.pl │ │ │ │ ├── InHebrew.pl │ │ │ │ ├── InHighPr.pl │ │ │ │ ├── InHighSu.pl │ │ │ │ ├── InHiraga.pl │ │ │ │ ├── InIdeogr.pl │ │ │ │ ├── InIpaExt.pl │ │ │ │ ├── InKanbun.pl │ │ │ │ ├── InKangxi.pl │ │ │ │ ├── InKannad.pl │ │ │ │ ├── InKatak2.pl │ │ │ │ ├── InKataka.pl │ │ │ │ ├── InKhmer.pl │ │ │ │ ├── InKhmerS.pl │ │ │ │ ├── InLao.pl │ │ │ │ ├── InLatin1.pl │ │ │ │ ├── InLatin2.pl │ │ │ │ ├── InLatin3.pl │ │ │ │ ├── InLatinE.pl │ │ │ │ ├── InLetter.pl │ │ │ │ ├── InLimbu.pl │ │ │ │ ├── InLinea2.pl │ │ │ │ ├── InLinear.pl │ │ │ │ ├── InLowSur.pl │ │ │ │ ├── InMalaya.pl │ │ │ │ ├── InMathe2.pl │ │ │ │ ├── InMathem.pl │ │ │ │ ├── InMisce2.pl │ │ │ │ ├── InMisce3.pl │ │ │ │ ├── InMisce4.pl │ │ │ │ ├── InMisce5.pl │ │ │ │ ├── InMiscel.pl │ │ │ │ ├── InMongol.pl │ │ │ │ ├── InMusica.pl │ │ │ │ ├── InMyanma.pl │ │ │ │ ├── InNumber.pl │ │ │ │ ├── InOgham.pl │ │ │ │ ├── InOldIta.pl │ │ │ │ ├── InOptica.pl │ │ │ │ ├── InOriya.pl │ │ │ │ ├── InOsmany.pl │ │ │ │ ├── InPhonet.pl │ │ │ │ ├── InPrivat.pl │ │ │ │ ├── InRunic.pl │ │ │ │ ├── InShavia.pl │ │ │ │ ├── InSinhal.pl │ │ │ │ ├── InSmallF.pl │ │ │ │ ├── InSpacin.pl │ │ │ │ ├── InSpecia.pl │ │ │ │ ├── InSupers.pl │ │ │ │ ├── InSuppl2.pl │ │ │ │ ├── InSuppl3.pl │ │ │ │ ├── InSuppl4.pl │ │ │ │ ├── InSuppl5.pl │ │ │ │ ├── InSupple.pl │ │ │ │ ├── InSyriac.pl │ │ │ │ ├── InTagalo.pl │ │ │ │ ├── InTagban.pl │ │ │ │ ├── InTags.pl │ │ │ │ ├── InTaiLe.pl │ │ │ │ ├── InTaiXua.pl │ │ │ │ ├── InTamil.pl │ │ │ │ ├── InTelugu.pl │ │ │ │ ├── InThaana.pl │ │ │ │ ├── InThai.pl │ │ │ │ ├── InTibeta.pl │ │ │ │ ├── InUgarit.pl │ │ │ │ ├── InUnifie.pl │ │ │ │ ├── InVaria2.pl │ │ │ │ ├── InVariat.pl │ │ │ │ ├── InYiRadi.pl │ │ │ │ ├── InYiSyll.pl │ │ │ │ ├── InYijing.pl │ │ │ │ ├── JoinC.pl │ │ │ │ ├── JoinCont.pl │ │ │ │ ├── Kana.pl │ │ │ │ ├── Katakana.pl │ │ │ │ ├── Khmr.pl │ │ │ │ ├── Knda.pl │ │ │ │ ├── L.pl │ │ │ │ ├── LC.pl │ │ │ │ ├── LOE.pl │ │ │ │ ├── Laoo.pl │ │ │ │ ├── Latn.pl │ │ │ │ ├── Limb.pl │ │ │ │ ├── LinearB.pl │ │ │ │ ├── Ll.pl │ │ │ │ ├── Lm.pl │ │ │ │ ├── Lo.pl │ │ │ │ ├── LogicalO.pl │ │ │ │ ├── Lower.pl │ │ │ │ ├── Lowercas.pl │ │ │ │ ├── Lt.pl │ │ │ │ ├── Lu.pl │ │ │ │ ├── M.pl │ │ │ │ ├── Math.pl │ │ │ │ ├── Mc.pl │ │ │ │ ├── Me.pl │ │ │ │ ├── Mlym.pl │ │ │ │ ├── Mn.pl │ │ │ │ ├── Mong.pl │ │ │ │ ├── Mymr.pl │ │ │ │ ├── N.pl │ │ │ │ ├── NChar.pl │ │ │ │ ├── Nd.pl │ │ │ │ ├── Nl.pl │ │ │ │ ├── No.pl │ │ │ │ ├── Nonchara.pl │ │ │ │ ├── OAlpha.pl │ │ │ │ ├── ODI.pl │ │ │ │ ├── OGrExt.pl │ │ │ │ ├── OIDS.pl │ │ │ │ ├── OLower.pl │ │ │ │ ├── OMath.pl │ │ │ │ ├── OUpper.pl │ │ │ │ ├── Ogam.pl │ │ │ │ ├── OldItali.pl │ │ │ │ ├── Orya.pl │ │ │ │ ├── Osma.pl │ │ │ │ ├── OtherAlp.pl │ │ │ │ ├── OtherDef.pl │ │ │ │ ├── OtherGra.pl │ │ │ │ ├── OtherIdS.pl │ │ │ │ ├── OtherLow.pl │ │ │ │ ├── OtherMat.pl │ │ │ │ ├── OtherUpp.pl │ │ │ │ ├── P.pl │ │ │ │ ├── Pc.pl │ │ │ │ ├── Pd.pl │ │ │ │ ├── Pe.pl │ │ │ │ ├── Pf.pl │ │ │ │ ├── Pi.pl │ │ │ │ ├── Po.pl │ │ │ │ ├── Print.pl │ │ │ │ ├── Ps.pl │ │ │ │ ├── Punct.pl │ │ │ │ ├── QMark.pl │ │ │ │ ├── Qaai.pl │ │ │ │ ├── Quotatio.pl │ │ │ │ ├── Radical.pl │ │ │ │ ├── Radical2.pl │ │ │ │ ├── Runr.pl │ │ │ │ ├── S.pl │ │ │ │ ├── SD.pl │ │ │ │ ├── STerm.pl │ │ │ │ ├── Sc.pl │ │ │ │ ├── Shaw.pl │ │ │ │ ├── Sinh.pl │ │ │ │ ├── Sk.pl │ │ │ │ ├── Sm.pl │ │ │ │ ├── So.pl │ │ │ │ ├── SoftDott.pl │ │ │ │ ├── Space.pl │ │ │ │ ├── SpacePer.pl │ │ │ │ ├── Sterm2.pl │ │ │ │ ├── Syrc.pl │ │ │ │ ├── Tagb.pl │ │ │ │ ├── TaiLe.pl │ │ │ │ ├── Taml.pl │ │ │ │ ├── Telu.pl │ │ │ │ ├── Term.pl │ │ │ │ ├── Terminal.pl │ │ │ │ ├── Tglg.pl │ │ │ │ ├── Thaa.pl │ │ │ │ ├── Thai.pl │ │ │ │ ├── Tibt.pl │ │ │ │ ├── Title.pl │ │ │ │ ├── UIdeo.pl │ │ │ │ ├── Ugar.pl │ │ │ │ ├── UnifiedI.pl │ │ │ │ ├── Upper.pl │ │ │ │ ├── Uppercas.pl │ │ │ │ ├── VS.pl │ │ │ │ ├── Variatio.pl │ │ │ │ ├── WSpace.pl │ │ │ │ ├── WhiteSpa.pl │ │ │ │ ├── Word.pl │ │ │ │ ├── XDigit.pl │ │ │ │ ├── Yiii.pl │ │ │ │ ├── Z.pl │ │ │ │ ├── Zl.pl │ │ │ │ ├── Zp.pl │ │ │ │ ├── Zs.pl │ │ │ │ ├── Zyyy.pl │ │ │ │ ├── _CanonDC.pl │ │ │ │ ├── _CaseIgn.pl │ │ │ │ └── _CombAbo.pl │ │ │ ├── hst/ │ │ │ │ ├── L.pl │ │ │ │ ├── LV.pl │ │ │ │ ├── LVT.pl │ │ │ │ ├── T.pl │ │ │ │ └── V.pl │ │ │ ├── jt/ │ │ │ │ ├── C.pl │ │ │ │ ├── D.pl │ │ │ │ ├── R.pl │ │ │ │ └── U.pl │ │ │ ├── lb/ │ │ │ │ ├── AI.pl │ │ │ │ ├── AL.pl │ │ │ │ ├── B2.pl │ │ │ │ ├── BA.pl │ │ │ │ ├── BB.pl │ │ │ │ ├── BK.pl │ │ │ │ ├── CB.pl │ │ │ │ ├── CL.pl │ │ │ │ ├── CM.pl │ │ │ │ ├── CR.pl │ │ │ │ ├── EX.pl │ │ │ │ ├── GL.pl │ │ │ │ ├── HY.pl │ │ │ │ ├── ID.pl │ │ │ │ ├── IN.pl │ │ │ │ ├── IS.pl │ │ │ │ ├── LF.pl │ │ │ │ ├── NL.pl │ │ │ │ ├── NS.pl │ │ │ │ ├── NU.pl │ │ │ │ ├── OP.pl │ │ │ │ ├── PO.pl │ │ │ │ ├── PR.pl │ │ │ │ ├── QU.pl │ │ │ │ ├── SA.pl │ │ │ │ ├── SG.pl │ │ │ │ ├── SP.pl │ │ │ │ ├── SY.pl │ │ │ │ ├── WJ.pl │ │ │ │ ├── XX.pl │ │ │ │ └── ZW.pl │ │ │ └── nt/ │ │ │ ├── De.pl │ │ │ ├── Di.pl │ │ │ └── Nu.pl │ │ ├── mktables │ │ └── version │ ├── utf8.pm │ ├── utf8_heavy.pl │ ├── util.pm │ ├── validate.pl │ ├── vars.pm │ ├── warnings/ │ │ └── register.pm │ └── warnings.pm ├── locale.c ├── mg.c ├── mg.h ├── nostdio.h ├── numeric.c ├── op.c ├── op.h ├── opcode.h ├── opnames.h ├── out.txt ├── pad.c ├── pad.h ├── parser-util.c ├── patchlevel.h ├── perl.c ├── perl.h ├── perlapi.c ├── perlapi.h ├── perlio.c ├── perlio.h ├── perliol.h ├── perlmain.c ├── perlsdio.h ├── perlsfio.h ├── perlvars.h ├── perly.c ├── perly.h ├── pfunc.h ├── poll.c ├── poll.h ├── pp.c ├── pp.h ├── pp_ctl.c ├── pp_hot.c ├── pp_pack.c ├── pp_proto.h ├── pp_sort.c ├── pp_sys.c ├── ppport.h ├── proto.h ├── reentr.h ├── reentr.inc ├── regcomp.c ├── regcomp.h ├── regexec.c ├── regexp.h ├── regnodes.h ├── run.c ├── scope.c ├── scope.h ├── spec_config.h ├── specrand.c ├── specrand.h ├── stdio.c ├── sv.c ├── sv.h ├── taint.c ├── thrdvar.h ├── thread.h ├── toke.c ├── tokenpos.h ├── universal.c ├── utf8.c ├── utf8.h ├── utfebcdic.h ├── util.c ├── util.h ├── warnings.h ├── win32/ │ ├── dirent.h │ ├── netdb.h │ ├── perlhost.h │ ├── perllib.c │ ├── sys/ │ │ └── socket.h │ ├── vdir.h │ ├── vmem.h │ ├── win32.c │ ├── win32.h │ ├── win32io.c │ ├── win32iop.h │ ├── win32sck.c │ ├── win32thread.c │ └── win32thread.h └── xsutils.c