├── .gitignore ├── .gitmodules ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── appveyor.yml ├── bin └── rubyc ├── lib ├── compiler.rb └── compiler │ ├── constants.rb │ ├── error.rb │ └── utils.rb ├── ruby ├── .document ├── .editorconfig ├── .gdbinit ├── .gitattributes ├── .indent.pro ├── .revision.time ├── .travis.yml ├── BSDL ├── CONTRIBUTING.md ├── COPYING ├── COPYING.ja ├── ChangeLog ├── GPL ├── KNOWNBUGS.rb ├── LEGAL ├── Makefile.in ├── NEWS ├── README.EXT ├── README.EXT.ja ├── README.ja.md ├── README.md ├── acinclude.m4 ├── aclocal.m4 ├── addr2line.c ├── addr2line.h ├── appveyor.yml ├── array.c ├── autoupdate_autoupdate.c ├── autoupdate_exepath.c ├── autoupdate_inflate.c ├── autoupdate_tmpf.c ├── autoupdate_utils.c ├── basictest │ ├── runner.rb │ └── test.rb ├── benchmark │ ├── bm_app_answer.rb │ ├── bm_app_aobench.rb │ ├── bm_app_erb.rb │ ├── bm_app_factorial.rb │ ├── bm_app_fib.rb │ ├── bm_app_lc_fizzbuzz.rb │ ├── bm_app_mandelbrot.rb │ ├── bm_app_pentomino.rb │ ├── bm_app_raise.rb │ ├── bm_app_strconcat.rb │ ├── bm_app_tak.rb │ ├── bm_app_tarai.rb │ ├── bm_app_uri.rb │ ├── bm_array_shift.rb │ ├── bm_bighash.rb │ ├── bm_hash_aref_dsym.rb │ ├── bm_hash_aref_dsym_long.rb │ ├── bm_hash_aref_fix.rb │ ├── bm_hash_aref_flo.rb │ ├── bm_hash_aref_miss.rb │ ├── bm_hash_aref_str.rb │ ├── bm_hash_aref_sym.rb │ ├── bm_hash_aref_sym_long.rb │ ├── bm_hash_flatten.rb │ ├── bm_hash_ident_flo.rb │ ├── bm_hash_ident_num.rb │ ├── bm_hash_ident_obj.rb │ ├── bm_hash_ident_str.rb │ ├── bm_hash_ident_sym.rb │ ├── bm_hash_keys.rb │ ├── bm_hash_long.rb │ ├── bm_hash_shift.rb │ ├── bm_hash_shift_u16.rb │ ├── bm_hash_shift_u24.rb │ ├── bm_hash_shift_u32.rb │ ├── bm_hash_small2.rb │ ├── bm_hash_small4.rb │ ├── bm_hash_small8.rb │ ├── bm_hash_to_proc.rb │ ├── bm_hash_values.rb │ ├── bm_io_file_create.rb │ ├── bm_io_file_read.rb │ ├── bm_io_file_write.rb │ ├── bm_io_nonblock_noex.rb │ ├── bm_io_nonblock_noex2.rb │ ├── bm_io_select.rb │ ├── bm_io_select2.rb │ ├── bm_io_select3.rb │ ├── bm_loop_for.rb │ ├── bm_loop_generator.rb │ ├── bm_loop_times.rb │ ├── bm_loop_whileloop.rb │ ├── bm_loop_whileloop2.rb │ ├── bm_marshal_dump_flo.rb │ ├── bm_marshal_dump_load_geniv.rb │ ├── bm_marshal_dump_load_time.rb │ ├── bm_require.rb │ ├── bm_require_thread.rb │ ├── bm_securerandom.rb │ ├── bm_so_ackermann.rb │ ├── bm_so_array.rb │ ├── bm_so_binary_trees.rb │ ├── bm_so_concatenate.rb │ ├── bm_so_count_words.rb │ ├── bm_so_exception.rb │ ├── bm_so_fannkuch.rb │ ├── bm_so_fasta.rb │ ├── bm_so_k_nucleotide.rb │ ├── bm_so_lists.rb │ ├── bm_so_mandelbrot.rb │ ├── bm_so_matrix.rb │ ├── bm_so_meteor_contest.rb │ ├── bm_so_nbody.rb │ ├── bm_so_nested_loop.rb │ ├── bm_so_nsieve.rb │ ├── bm_so_nsieve_bits.rb │ ├── bm_so_object.rb │ ├── bm_so_partial_sums.rb │ ├── bm_so_pidigits.rb │ ├── bm_so_random.rb │ ├── bm_so_reverse_complement.rb │ ├── bm_so_sieve.rb │ ├── bm_so_spectralnorm.rb │ ├── bm_vm1_attr_ivar.rb │ ├── bm_vm1_attr_ivar_set.rb │ ├── bm_vm1_block.rb │ ├── bm_vm1_const.rb │ ├── bm_vm1_ensure.rb │ ├── bm_vm1_float_simple.rb │ ├── bm_vm1_gc_short_lived.rb │ ├── bm_vm1_gc_short_with_complex_long.rb │ ├── bm_vm1_gc_short_with_long.rb │ ├── bm_vm1_gc_short_with_symbol.rb │ ├── bm_vm1_gc_wb_ary.rb │ ├── bm_vm1_gc_wb_ary_promoted.rb │ ├── bm_vm1_gc_wb_obj.rb │ ├── bm_vm1_gc_wb_obj_promoted.rb │ ├── bm_vm1_ivar.rb │ ├── bm_vm1_ivar_set.rb │ ├── bm_vm1_length.rb │ ├── bm_vm1_lvar_init.rb │ ├── bm_vm1_lvar_set.rb │ ├── bm_vm1_neq.rb │ ├── bm_vm1_not.rb │ ├── bm_vm1_rescue.rb │ ├── bm_vm1_simplereturn.rb │ ├── bm_vm1_swap.rb │ ├── bm_vm1_yield.rb │ ├── bm_vm2_array.rb │ ├── bm_vm2_bigarray.rb │ ├── bm_vm2_bighash.rb │ ├── bm_vm2_case.rb │ ├── bm_vm2_case_lit.rb │ ├── bm_vm2_defined_method.rb │ ├── bm_vm2_dstr.rb │ ├── bm_vm2_eval.rb │ ├── bm_vm2_method.rb │ ├── bm_vm2_method_missing.rb │ ├── bm_vm2_method_with_block.rb │ ├── bm_vm2_module_ann_const_set.rb │ ├── bm_vm2_module_const_set.rb │ ├── bm_vm2_mutex.rb │ ├── bm_vm2_newlambda.rb │ ├── bm_vm2_poly_method.rb │ ├── bm_vm2_poly_method_ov.rb │ ├── bm_vm2_poly_singleton.rb │ ├── bm_vm2_proc.rb │ ├── bm_vm2_raise1.rb │ ├── bm_vm2_raise2.rb │ ├── bm_vm2_regexp.rb │ ├── bm_vm2_send.rb │ ├── bm_vm2_string_literal.rb │ ├── bm_vm2_struct_big_aref_hi.rb │ ├── bm_vm2_struct_big_aref_lo.rb │ ├── bm_vm2_struct_big_aset.rb │ ├── bm_vm2_struct_big_href_hi.rb │ ├── bm_vm2_struct_big_href_lo.rb │ ├── bm_vm2_struct_big_hset.rb │ ├── bm_vm2_struct_small_aref.rb │ ├── bm_vm2_struct_small_aset.rb │ ├── bm_vm2_struct_small_href.rb │ ├── bm_vm2_struct_small_hset.rb │ ├── bm_vm2_super.rb │ ├── bm_vm2_unif1.rb │ ├── bm_vm2_zsuper.rb │ ├── bm_vm3_backtrace.rb │ ├── bm_vm3_clearmethodcache.rb │ ├── bm_vm3_gc.rb │ ├── bm_vm3_gc_old_full.rb │ ├── bm_vm3_gc_old_immediate.rb │ ├── bm_vm3_gc_old_lazy.rb │ ├── bm_vm_symbol_block_pass.rb │ ├── bm_vm_thread_alive_check1.rb │ ├── bm_vm_thread_close.rb │ ├── bm_vm_thread_create_join.rb │ ├── bm_vm_thread_mutex1.rb │ ├── bm_vm_thread_mutex2.rb │ ├── bm_vm_thread_mutex3.rb │ ├── bm_vm_thread_pass.rb │ ├── bm_vm_thread_pass_flood.rb │ ├── bm_vm_thread_pipe.rb │ ├── bm_vm_thread_queue.rb │ ├── driver.rb │ ├── gc │ │ ├── aobench.rb │ │ ├── binary_trees.rb │ │ ├── gcbench.rb │ │ ├── hash1.rb │ │ ├── hash2.rb │ │ ├── null.rb │ │ ├── pentomino.rb │ │ ├── rdoc.rb │ │ ├── redblack.rb │ │ └── ring.rb │ ├── make_fasta_output.rb │ ├── memory_wrapper.rb │ ├── other-lang │ │ ├── ack.pl │ │ ├── ack.py │ │ ├── ack.rb │ │ ├── ack.scm │ │ ├── eval.rb │ │ ├── fact.pl │ │ ├── fact.py │ │ ├── fact.rb │ │ ├── fact.scm │ │ ├── fib.pl │ │ ├── fib.py │ │ ├── fib.rb │ │ ├── fib.scm │ │ ├── loop.pl │ │ ├── loop.py │ │ ├── loop.rb │ │ ├── loop.scm │ │ ├── loop2.rb │ │ ├── tak.pl │ │ ├── tak.py │ │ ├── tak.rb │ │ └── tak.scm │ ├── prepare_require.rb │ ├── prepare_require_thread.rb │ ├── prepare_so_count_words.rb │ ├── prepare_so_k_nucleotide.rb │ ├── prepare_so_reverse_complement.rb │ ├── report.rb │ ├── run.rb │ ├── runc.rb │ └── wc.input.base ├── bignum.c ├── bin │ ├── erb │ ├── gem │ ├── irb │ ├── rdoc │ └── ri ├── bootstraptest │ ├── pending.rb │ ├── runner.rb │ ├── test_attr.rb │ ├── test_autoload.rb │ ├── test_block.rb │ ├── test_class.rb │ ├── test_eval.rb │ ├── test_exception.rb │ ├── test_finalizer.rb │ ├── test_flip.rb │ ├── test_flow.rb │ ├── test_fork.rb │ ├── test_gc.rb │ ├── test_io.rb │ ├── test_jump.rb │ ├── test_literal.rb │ ├── test_literal_suffix.rb │ ├── test_load.rb │ ├── test_marshal.rb │ ├── test_massign.rb │ ├── test_method.rb │ ├── test_objectspace.rb │ ├── test_proc.rb │ ├── test_string.rb │ ├── test_struct.rb │ ├── test_syntax.rb │ └── test_thread.rb ├── ccan │ ├── build_assert │ │ └── build_assert.h │ ├── check_type │ │ └── check_type.h │ ├── container_of │ │ └── container_of.h │ ├── licenses │ │ ├── BSD-MIT │ │ └── CC0 │ ├── list │ │ └── list.h │ └── str │ │ └── str.h ├── class.c ├── common.mk ├── compar.c ├── compile.c ├── complex.c ├── configure ├── configure.in ├── constant.h ├── cont.c ├── coverage │ └── README ├── cygwin │ └── GNUmakefile.in ├── debug.c ├── defs │ ├── gmake.mk │ ├── id.def │ ├── keywords │ ├── known_errors.def │ ├── lex.c.src │ ├── opt_insn_unif.def │ ├── opt_operand.def │ └── separated_version.mk ├── dir.c ├── dln.c ├── dln.h ├── dln_find.c ├── dmydln.c ├── dmyenc.c ├── dmyext.c ├── doc │ ├── .document │ ├── ChangeLog-0.06_to_0.52 │ ├── ChangeLog-0.50_to_0.60 │ ├── ChangeLog-0.60_to_1.1 │ ├── ChangeLog-1.8.0 │ ├── ChangeLog-1.9.3 │ ├── ChangeLog-2.0.0 │ ├── ChangeLog-2.1.0 │ ├── ChangeLog-2.2.0 │ ├── ChangeLog-2.3.0 │ ├── ChangeLog-2.4.0 │ ├── ChangeLog-2016 │ ├── ChangeLog-YARV │ ├── NEWS-1.8.7 │ ├── NEWS-1.9.1 │ ├── NEWS-1.9.2 │ ├── NEWS-1.9.3 │ ├── NEWS-2.0.0 │ ├── NEWS-2.1.0 │ ├── NEWS-2.2.0 │ ├── NEWS-2.3.0 │ ├── contributing.rdoc │ ├── contributors.rdoc │ ├── dtrace_probes.rdoc │ ├── etc.rd.ja │ ├── extension.ja.rdoc │ ├── extension.rdoc │ ├── forwardable.rd.ja │ ├── globals.rdoc │ ├── images │ │ └── boottime-classes.png │ ├── irb │ │ ├── irb-tools.rd.ja │ │ └── irb.rd.ja │ ├── keywords.rdoc │ ├── maintainers.rdoc │ ├── marshal.rdoc │ ├── pty │ │ ├── README.expect.ja │ │ └── README.ja │ ├── regexp.rdoc │ ├── security.rdoc │ ├── shell.rd.ja │ ├── standard_library.rdoc │ ├── syntax.rdoc │ └── syntax │ │ ├── assignment.rdoc │ │ ├── calling_methods.rdoc │ │ ├── control_expressions.rdoc │ │ ├── exceptions.rdoc │ │ ├── literals.rdoc │ │ ├── methods.rdoc │ │ ├── miscellaneous.rdoc │ │ ├── modules_and_classes.rdoc │ │ ├── precedence.rdoc │ │ └── refinements.rdoc ├── enc │ ├── Makefile.in │ ├── ascii.c │ ├── big5.c │ ├── cp949.c │ ├── depend │ ├── ebcdic.h │ ├── emacs_mule.c │ ├── encdb.c │ ├── encinit.c.erb │ ├── euc_jp.c │ ├── euc_kr.c │ ├── euc_tw.c │ ├── gb18030.c │ ├── gb2312.c │ ├── gbk.c │ ├── iso_2022_jp.h │ ├── iso_8859.h │ ├── iso_8859_1.c │ ├── iso_8859_10.c │ ├── iso_8859_11.c │ ├── iso_8859_13.c │ ├── iso_8859_14.c │ ├── iso_8859_15.c │ ├── iso_8859_16.c │ ├── iso_8859_2.c │ ├── iso_8859_3.c │ ├── iso_8859_4.c │ ├── iso_8859_5.c │ ├── iso_8859_6.c │ ├── iso_8859_7.c │ ├── iso_8859_8.c │ ├── iso_8859_9.c │ ├── jis │ │ ├── props.h │ │ ├── props.h.blt │ │ ├── props.kwd │ │ └── props.src │ ├── koi8_r.c │ ├── koi8_u.c │ ├── make_encmake.rb │ ├── mktable.c │ ├── prelude.rb │ ├── shift_jis.c │ ├── trans │ │ ├── CP │ │ │ ├── CP932UDA%UCS.src │ │ │ ├── CP932VDC@IBM%UCS.src │ │ │ ├── CP932VDC@NEC_IBM%UCS.src │ │ │ ├── UCS%CP932UDA.src │ │ │ ├── UCS%CP932VDC@IBM.src │ │ │ └── UCS%CP932VDC@NEC_IBM.src │ │ ├── EMOJI │ │ │ ├── EMOJI_ISO-2022-JP-KDDI%UCS.src │ │ │ ├── EMOJI_SHIFT_JIS-DOCOMO%UCS.src │ │ │ ├── EMOJI_SHIFT_JIS-KDDI%UCS.src │ │ │ ├── EMOJI_SHIFT_JIS-KDDI-UNDOC%UCS.src │ │ │ ├── EMOJI_SHIFT_JIS-SOFTBANK%UCS.src │ │ │ ├── UCS%EMOJI_ISO-2022-JP-KDDI-UNDOC.src │ │ │ ├── UCS%EMOJI_ISO-2022-JP-KDDI.src │ │ │ ├── UCS%EMOJI_SHIFT_JIS-DOCOMO.src │ │ │ ├── UCS%EMOJI_SHIFT_JIS-KDDI-UNDOC.src │ │ │ ├── UCS%EMOJI_SHIFT_JIS-KDDI.src │ │ │ └── UCS%EMOJI_SHIFT_JIS-SOFTBANK.src │ │ ├── GB │ │ │ ├── GB12345%UCS.src │ │ │ ├── GB2312%UCS.src │ │ │ ├── UCS%GB12345.src │ │ │ └── UCS%GB2312.src │ │ ├── JIS │ │ │ ├── JISX0201-KANA%UCS.src │ │ │ ├── JISX0208@1990%UCS.src │ │ │ ├── JISX0208@MS%UCS.src │ │ │ ├── JISX0208UDC%UCS.src │ │ │ ├── JISX0208VDC@NEC%UCS.src │ │ │ ├── JISX0212%UCS.src │ │ │ ├── JISX0212@MS%UCS.src │ │ │ ├── JISX0212UDC%UCS.src │ │ │ ├── JISX0212VDC@IBM%UCS.src │ │ │ ├── JISX0213-1%UCS@BMP.src │ │ │ ├── JISX0213-1%UCS@SIP.src │ │ │ ├── JISX0213-2%UCS@BMP.src │ │ │ ├── JISX0213-2%UCS@SIP.src │ │ │ ├── UCS%JISX0201-KANA.src │ │ │ ├── UCS%JISX0208@1990.src │ │ │ ├── UCS%JISX0208@MS.src │ │ │ ├── UCS%JISX0208UDC.src │ │ │ ├── UCS%JISX0208VDC@NEC.src │ │ │ ├── UCS%JISX0212.src │ │ │ ├── UCS%JISX0212@MS.src │ │ │ ├── UCS%JISX0212UDC.src │ │ │ ├── UCS%JISX0212VDC@IBM.src │ │ │ ├── UCS@BMP%JISX0213-1.src │ │ │ ├── UCS@BMP%JISX0213-2.src │ │ │ ├── UCS@SIP%JISX0213-1.src │ │ │ └── UCS@SIP%JISX0213-2.src │ │ ├── big5-hkscs-tbl.rb │ │ ├── big5-uao-tbl.rb │ │ ├── big5.c │ │ ├── big5.trans │ │ ├── chinese.c │ │ ├── chinese.trans │ │ ├── cp850-tbl.rb │ │ ├── cp852-tbl.rb │ │ ├── cp855-tbl.rb │ │ ├── cp949-tbl.rb │ │ ├── ebcdic.c │ │ ├── ebcdic.trans │ │ ├── emoji-exchange-tbl.rb │ │ ├── emoji.c │ │ ├── emoji.trans │ │ ├── emoji_iso2022_kddi.c │ │ ├── emoji_iso2022_kddi.trans │ │ ├── emoji_sjis_docomo.c │ │ ├── emoji_sjis_docomo.trans │ │ ├── emoji_sjis_kddi.c │ │ ├── emoji_sjis_kddi.trans │ │ ├── emoji_sjis_softbank.c │ │ ├── emoji_sjis_softbank.trans │ │ ├── escape.c │ │ ├── escape.trans │ │ ├── euckr-tbl.rb │ │ ├── gb18030-tbl.rb │ │ ├── gb18030.c │ │ ├── gb18030.trans │ │ ├── gbk-tbl.rb │ │ ├── gbk.c │ │ ├── gbk.trans │ │ ├── ibm437-tbl.rb │ │ ├── ibm737-tbl.rb │ │ ├── ibm775-tbl.rb │ │ ├── ibm852-tbl.rb │ │ ├── ibm855-tbl.rb │ │ ├── ibm857-tbl.rb │ │ ├── ibm860-tbl.rb │ │ ├── ibm861-tbl.rb │ │ ├── ibm862-tbl.rb │ │ ├── ibm863-tbl.rb │ │ ├── ibm865-tbl.rb │ │ ├── ibm866-tbl.rb │ │ ├── ibm869-tbl.rb │ │ ├── iso-8859-1-tbl.rb │ │ ├── iso-8859-10-tbl.rb │ │ ├── iso-8859-11-tbl.rb │ │ ├── iso-8859-13-tbl.rb │ │ ├── iso-8859-14-tbl.rb │ │ ├── iso-8859-15-tbl.rb │ │ ├── iso-8859-16-tbl.rb │ │ ├── iso-8859-2-tbl.rb │ │ ├── iso-8859-3-tbl.rb │ │ ├── iso-8859-4-tbl.rb │ │ ├── iso-8859-5-tbl.rb │ │ ├── iso-8859-6-tbl.rb │ │ ├── iso-8859-7-tbl.rb │ │ ├── iso-8859-8-tbl.rb │ │ ├── iso-8859-9-tbl.rb │ │ ├── iso2022.c │ │ ├── iso2022.trans │ │ ├── japanese.c │ │ ├── japanese.trans │ │ ├── japanese_euc.c │ │ ├── japanese_euc.trans │ │ ├── japanese_sjis.c │ │ ├── japanese_sjis.trans │ │ ├── koi8-r-tbl.rb │ │ ├── koi8-u-tbl.rb │ │ ├── korean.c │ │ ├── korean.trans │ │ ├── maccroatian-tbl.rb │ │ ├── maccyrillic-tbl.rb │ │ ├── macgreek-tbl.rb │ │ ├── maciceland-tbl.rb │ │ ├── macroman-tbl.rb │ │ ├── macromania-tbl.rb │ │ ├── macturkish-tbl.rb │ │ ├── macukraine-tbl.rb │ │ ├── newline.c │ │ ├── newline.trans │ │ ├── single_byte.c │ │ ├── single_byte.trans │ │ ├── tis-620-tbl.rb │ │ ├── transdb.c │ │ ├── ucm │ │ │ ├── glibc-BIG5-2.3.3.ucm │ │ │ ├── glibc-BIG5HKSCS-2.3.3.ucm │ │ │ ├── windows-950-2000.ucm │ │ │ └── windows-950_hkscs-2001.ucm │ │ ├── utf8_mac-tbl.rb │ │ ├── utf8_mac.c │ │ ├── utf8_mac.trans │ │ ├── utf_16_32.c │ │ ├── utf_16_32.trans │ │ ├── windows-1250-tbl.rb │ │ ├── windows-1251-tbl.rb │ │ ├── windows-1252-tbl.rb │ │ ├── windows-1253-tbl.rb │ │ ├── windows-1254-tbl.rb │ │ ├── windows-1255-tbl.rb │ │ ├── windows-1256-tbl.rb │ │ ├── windows-1257-tbl.rb │ │ └── windows-874-tbl.rb │ ├── unicode.c │ ├── unicode │ │ ├── 9.0.0 │ │ │ ├── casefold.h │ │ │ └── name2ctype.h │ │ └── case-folding.rb │ ├── us_ascii.c │ ├── utf_16_32.h │ ├── utf_16be.c │ ├── utf_16le.c │ ├── utf_32be.c │ ├── utf_32le.c │ ├── utf_7.h │ ├── utf_8.c │ ├── windows_1250.c │ ├── windows_1251.c │ ├── windows_1252.c │ ├── windows_1253.c │ ├── windows_1254.c │ ├── windows_1257.c │ ├── windows_31j.c │ └── x_emoji.h ├── encindex.h ├── enclose_io_memfs.c ├── enclose_io_unix.c ├── enclose_io_win32.c ├── encoding.c ├── enum.c ├── enumerator.c ├── error.c ├── eval.c ├── eval_error.c ├── eval_intern.h ├── eval_jump.c ├── ext │ ├── -test- │ │ ├── array │ │ │ └── resize │ │ │ │ ├── depend │ │ │ │ ├── extconf.rb │ │ │ │ └── resize.c │ │ ├── auto_ext.rb │ │ ├── bignum │ │ │ ├── big2str.c │ │ │ ├── bigzero.c │ │ │ ├── depend │ │ │ ├── div.c │ │ │ ├── extconf.rb │ │ │ ├── init.c │ │ │ ├── intpack.c │ │ │ ├── mul.c │ │ │ └── str2big.c │ │ ├── bug-3571 │ │ │ ├── bug.c │ │ │ └── extconf.rb │ │ ├── bug-5832 │ │ │ ├── bug.c │ │ │ └── extconf.rb │ │ ├── bug_reporter │ │ │ ├── bug_reporter.c │ │ │ └── extconf.rb │ │ ├── class │ │ │ ├── class2name.c │ │ │ ├── depend │ │ │ ├── extconf.rb │ │ │ └── init.c │ │ ├── debug │ │ │ ├── depend │ │ │ ├── extconf.rb │ │ │ ├── init.c │ │ │ ├── inspector.c │ │ │ └── profile_frames.c │ │ ├── dln │ │ │ └── empty │ │ │ │ ├── depend │ │ │ │ ├── empty.c │ │ │ │ └── extconf.rb │ │ ├── exception │ │ │ ├── dataerror.c │ │ │ ├── depend │ │ │ ├── enc_raise.c │ │ │ ├── ensured.c │ │ │ ├── extconf.rb │ │ │ └── init.c │ │ ├── fatal │ │ │ ├── extconf.rb │ │ │ └── rb_fatal.c │ │ ├── file │ │ │ ├── depend │ │ │ ├── extconf.rb │ │ │ ├── fs.c │ │ │ ├── init.c │ │ │ └── stat.c │ │ ├── float │ │ │ ├── depend │ │ │ ├── extconf.rb │ │ │ ├── init.c │ │ │ └── nextafter.c │ │ ├── funcall │ │ │ ├── extconf.rb │ │ │ └── passing_block.c │ │ ├── gvl │ │ │ └── call_without_gvl │ │ │ │ ├── call_without_gvl.c │ │ │ │ ├── depend │ │ │ │ └── extconf.rb │ │ ├── hash │ │ │ ├── delete.c │ │ │ ├── extconf.rb │ │ │ └── init.c │ │ ├── integer │ │ │ ├── core_ext.c │ │ │ ├── depend │ │ │ ├── extconf.rb │ │ │ ├── init.c │ │ │ └── my_integer.c │ │ ├── iseq_load │ │ │ ├── extconf.rb │ │ │ └── iseq_load.c │ │ ├── iter │ │ │ ├── break.c │ │ │ ├── extconf.rb │ │ │ ├── init.c │ │ │ └── yield.c │ │ ├── load │ │ │ └── dot.dot │ │ │ │ ├── depend │ │ │ │ ├── dot.dot.c │ │ │ │ └── extconf.rb │ │ ├── marshal │ │ │ ├── compat │ │ │ │ ├── extconf.rb │ │ │ │ └── usrcompat.c │ │ │ ├── internal_ivar │ │ │ │ ├── extconf.rb │ │ │ │ └── internal_ivar.c │ │ │ └── usr │ │ │ │ ├── extconf.rb │ │ │ │ └── usrmarshal.c │ │ ├── memory_status │ │ │ ├── extconf.rb │ │ │ └── memory_status.c │ │ ├── method │ │ │ ├── arity.c │ │ │ ├── extconf.rb │ │ │ └── init.c │ │ ├── notimplement │ │ │ ├── bug.c │ │ │ └── extconf.rb │ │ ├── num2int │ │ │ ├── extconf.rb │ │ │ └── num2int.c │ │ ├── path_to_class │ │ │ ├── extconf.rb │ │ │ └── path_to_class.c │ │ ├── popen_deadlock │ │ │ ├── extconf.rb │ │ │ └── infinite_loop_dlsym.c │ │ ├── postponed_job │ │ │ ├── depend │ │ │ ├── extconf.rb │ │ │ └── postponed_job.c │ │ ├── printf │ │ │ ├── depend │ │ │ ├── extconf.rb │ │ │ └── printf.c │ │ ├── proc │ │ │ ├── extconf.rb │ │ │ ├── init.c │ │ │ ├── receiver.c │ │ │ └── super.c │ │ ├── rational │ │ │ ├── depend │ │ │ ├── extconf.rb │ │ │ └── rat.c │ │ ├── recursion │ │ │ ├── extconf.rb │ │ │ └── recursion.c │ │ ├── regexp │ │ │ ├── extconf.rb │ │ │ ├── init.c │ │ │ └── parse_depth_limit.c │ │ ├── st │ │ │ ├── foreach │ │ │ │ ├── extconf.rb │ │ │ │ └── foreach.c │ │ │ ├── numhash │ │ │ │ ├── extconf.rb │ │ │ │ └── numhash.c │ │ │ └── update │ │ │ │ ├── extconf.rb │ │ │ │ └── update.c │ │ ├── string │ │ │ ├── capacity.c │ │ │ ├── coderange.c │ │ │ ├── cstr.c │ │ │ ├── depend │ │ │ ├── ellipsize.c │ │ │ ├── enc_associate.c │ │ │ ├── enc_str_buf_cat.c │ │ │ ├── extconf.rb │ │ │ ├── fstring.c │ │ │ ├── init.c │ │ │ ├── modify.c │ │ │ ├── nofree.c │ │ │ ├── normalize.c │ │ │ ├── qsort.c │ │ │ └── set_len.c │ │ ├── struct │ │ │ ├── duplicate.c │ │ │ ├── extconf.rb │ │ │ ├── init.c │ │ │ └── member.c │ │ ├── symbol │ │ │ ├── extconf.rb │ │ │ ├── init.c │ │ │ └── type.c │ │ ├── time │ │ │ ├── extconf.rb │ │ │ ├── init.c │ │ │ └── new.c │ │ ├── tracepoint │ │ │ ├── depend │ │ │ ├── extconf.rb │ │ │ ├── gc_hook.c │ │ │ └── tracepoint.c │ │ ├── typeddata │ │ │ ├── extconf.rb │ │ │ └── typeddata.c │ │ ├── vm │ │ │ ├── at_exit.c │ │ │ ├── depend │ │ │ └── extconf.rb │ │ ├── wait_for_single_fd │ │ │ ├── depend │ │ │ ├── extconf.rb │ │ │ └── wait_for_single_fd.c │ │ └── win32 │ │ │ ├── console │ │ │ ├── attribute.c │ │ │ ├── depend │ │ │ ├── extconf.rb │ │ │ └── init.c │ │ │ ├── dln │ │ │ ├── depend │ │ │ ├── dlntest.c │ │ │ ├── extconf.rb │ │ │ ├── libdlntest.c │ │ │ └── libdlntest.def │ │ │ └── fd_setsize │ │ │ ├── depend │ │ │ ├── extconf.rb │ │ │ └── fd_setsize.c │ ├── .document │ ├── Setup │ ├── Setup.atheos │ ├── Setup.nacl │ ├── Setup.nt │ ├── bigdecimal │ │ ├── bigdecimal.c │ │ ├── bigdecimal.gemspec │ │ ├── bigdecimal.h │ │ ├── depend │ │ ├── extconf.rb │ │ ├── lib │ │ │ └── bigdecimal │ │ │ │ ├── jacobian.rb │ │ │ │ ├── ludcmp.rb │ │ │ │ ├── math.rb │ │ │ │ ├── newton.rb │ │ │ │ └── util.rb │ │ └── sample │ │ │ ├── linear.rb │ │ │ ├── nlsolve.rb │ │ │ └── pi.rb │ ├── cgi │ │ └── escape │ │ │ ├── depend │ │ │ ├── escape.c │ │ │ └── extconf.rb │ ├── continuation │ │ ├── continuation.c │ │ ├── depend │ │ └── extconf.rb │ ├── coverage │ │ ├── coverage.c │ │ ├── depend │ │ └── extconf.rb │ ├── date │ │ ├── date_core.c │ │ ├── date_parse.c │ │ ├── date_strftime.c │ │ ├── date_strptime.c │ │ ├── date_tmx.h │ │ ├── depend │ │ ├── extconf.rb │ │ ├── lib │ │ │ └── date.rb │ │ ├── prereq.mk │ │ ├── zonetab.h │ │ └── zonetab.list │ ├── dbm │ │ ├── dbm.c │ │ ├── depend │ │ └── extconf.rb │ ├── digest │ │ ├── bubblebabble │ │ │ ├── bubblebabble.c │ │ │ ├── depend │ │ │ └── extconf.rb │ │ ├── defs.h │ │ ├── depend │ │ ├── digest.c │ │ ├── digest.h │ │ ├── digest_conf.rb │ │ ├── extconf.rb │ │ ├── lib │ │ │ └── digest.rb │ │ ├── md5 │ │ │ ├── depend │ │ │ ├── extconf.rb │ │ │ ├── md5.c │ │ │ ├── md5.h │ │ │ ├── md5cc.h │ │ │ ├── md5init.c │ │ │ └── md5ossl.h │ │ ├── rmd160 │ │ │ ├── depend │ │ │ ├── extconf.rb │ │ │ ├── rmd160.c │ │ │ ├── rmd160.h │ │ │ ├── rmd160init.c │ │ │ └── rmd160ossl.h │ │ ├── sha1 │ │ │ ├── depend │ │ │ ├── extconf.rb │ │ │ ├── sha1.c │ │ │ ├── sha1.h │ │ │ ├── sha1cc.h │ │ │ ├── sha1init.c │ │ │ └── sha1ossl.h │ │ ├── sha2 │ │ │ ├── depend │ │ │ ├── extconf.rb │ │ │ ├── lib │ │ │ │ └── sha2.rb │ │ │ ├── sha2.c │ │ │ ├── sha2.h │ │ │ ├── sha2cc.h │ │ │ ├── sha2init.c │ │ │ └── sha2ossl.h │ │ └── test.sh │ ├── etc │ │ ├── depend │ │ ├── etc.c │ │ ├── extconf.rb │ │ └── mkconstants.rb │ ├── extmk.rb │ ├── fcntl │ │ ├── depend │ │ ├── extconf.rb │ │ └── fcntl.c │ ├── fiber │ │ ├── depend │ │ ├── extconf.rb │ │ └── fiber.c │ ├── fiddle │ │ ├── closure.c │ │ ├── closure.h │ │ ├── conversions.c │ │ ├── conversions.h │ │ ├── depend │ │ ├── extconf.rb │ │ ├── extlibs │ │ ├── fiddle.c │ │ ├── fiddle.h │ │ ├── function.c │ │ ├── function.h │ │ ├── handle.c │ │ ├── lib │ │ │ ├── fiddle.rb │ │ │ └── fiddle │ │ │ │ ├── closure.rb │ │ │ │ ├── cparser.rb │ │ │ │ ├── function.rb │ │ │ │ ├── import.rb │ │ │ │ ├── pack.rb │ │ │ │ ├── struct.rb │ │ │ │ ├── types.rb │ │ │ │ └── value.rb │ │ ├── libffi-3.2.1 │ │ │ ├── ChangeLog │ │ │ ├── ChangeLog.libffi │ │ │ ├── ChangeLog.libffi-3.1 │ │ │ ├── ChangeLog.libgcj │ │ │ ├── ChangeLog.v1 │ │ │ ├── LICENSE │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ ├── acinclude.m4 │ │ │ ├── aclocal.m4 │ │ │ ├── compile │ │ │ ├── config.guess │ │ │ ├── config.sub │ │ │ ├── configure │ │ │ ├── configure.ac │ │ │ ├── depcomp │ │ │ ├── doc │ │ │ │ ├── libffi.info │ │ │ │ ├── libffi.texi │ │ │ │ ├── stamp-vti │ │ │ │ └── version.texi │ │ │ ├── fficonfig.h.in │ │ │ ├── generate-darwin-source-and-headers.py │ │ │ ├── include │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── ffi.h.in │ │ │ │ ├── ffi.h.in.orig │ │ │ │ └── ffi_common.h │ │ │ ├── install-sh │ │ │ ├── libffi.pc.in │ │ │ ├── libffi.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ ├── libtool-ldflags │ │ │ ├── libtool-version │ │ │ ├── ltmain.sh │ │ │ ├── m4 │ │ │ │ ├── asmcfi.m4 │ │ │ │ ├── ax_append_flag.m4 │ │ │ │ ├── ax_cc_maxopt.m4 │ │ │ │ ├── ax_cflags_warn_all.m4 │ │ │ │ ├── ax_check_compile_flag.m4 │ │ │ │ ├── ax_compiler_vendor.m4 │ │ │ │ ├── ax_configure_args.m4 │ │ │ │ ├── ax_enable_builddir.m4 │ │ │ │ ├── ax_gcc_archflag.m4 │ │ │ │ ├── ax_gcc_x86_cpuid.m4 │ │ │ │ ├── libtool.m4 │ │ │ │ ├── ltoptions.m4 │ │ │ │ ├── ltsugar.m4 │ │ │ │ ├── ltversion.m4 │ │ │ │ └── lt~obsolete.m4 │ │ │ ├── man │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── ffi.3 │ │ │ │ ├── ffi_call.3 │ │ │ │ ├── ffi_prep_cif.3 │ │ │ │ └── ffi_prep_cif_var.3 │ │ │ ├── mdate-sh │ │ │ ├── missing │ │ │ ├── msvcc.sh │ │ │ ├── src │ │ │ │ ├── aarch64 │ │ │ │ │ ├── ffi.c │ │ │ │ │ ├── ffitarget.h │ │ │ │ │ └── sysv.S │ │ │ │ ├── alpha │ │ │ │ │ ├── ffi.c │ │ │ │ │ ├── ffitarget.h │ │ │ │ │ └── osf.S │ │ │ │ ├── arc │ │ │ │ │ ├── arcompact.S │ │ │ │ │ ├── ffi.c │ │ │ │ │ └── ffitarget.h │ │ │ │ ├── arm │ │ │ │ │ ├── ffi.c │ │ │ │ │ ├── ffitarget.h │ │ │ │ │ ├── gentramp.sh │ │ │ │ │ ├── sysv.S │ │ │ │ │ └── trampoline.S │ │ │ │ ├── avr32 │ │ │ │ │ ├── ffi.c │ │ │ │ │ ├── ffitarget.h │ │ │ │ │ └── sysv.S │ │ │ │ ├── bfin │ │ │ │ │ ├── ffi.c │ │ │ │ │ ├── ffitarget.h │ │ │ │ │ └── sysv.S │ │ │ │ ├── closures.c │ │ │ │ ├── cris │ │ │ │ │ ├── ffi.c │ │ │ │ │ ├── ffitarget.h │ │ │ │ │ └── sysv.S │ │ │ │ ├── debug.c │ │ │ │ ├── dlmalloc.c │ │ │ │ ├── frv │ │ │ │ │ ├── eabi.S │ │ │ │ │ ├── ffi.c │ │ │ │ │ └── ffitarget.h │ │ │ │ ├── ia64 │ │ │ │ │ ├── ffi.c │ │ │ │ │ ├── ffitarget.h │ │ │ │ │ ├── ia64_flags.h │ │ │ │ │ └── unix.S │ │ │ │ ├── java_raw_api.c │ │ │ │ ├── m32r │ │ │ │ │ ├── ffi.c │ │ │ │ │ ├── ffitarget.h │ │ │ │ │ └── sysv.S │ │ │ │ ├── m68k │ │ │ │ │ ├── ffi.c │ │ │ │ │ ├── ffitarget.h │ │ │ │ │ └── sysv.S │ │ │ │ ├── m88k │ │ │ │ │ ├── ffi.c │ │ │ │ │ ├── ffitarget.h │ │ │ │ │ └── obsd.S │ │ │ │ ├── metag │ │ │ │ │ ├── ffi.c │ │ │ │ │ ├── ffitarget.h │ │ │ │ │ └── sysv.S │ │ │ │ ├── microblaze │ │ │ │ │ ├── ffi.c │ │ │ │ │ ├── ffitarget.h │ │ │ │ │ └── sysv.S │ │ │ │ ├── mips │ │ │ │ │ ├── ffi.c │ │ │ │ │ ├── ffitarget.h │ │ │ │ │ ├── n32.S │ │ │ │ │ └── o32.S │ │ │ │ ├── moxie │ │ │ │ │ ├── eabi.S │ │ │ │ │ ├── ffi.c │ │ │ │ │ └── ffitarget.h │ │ │ │ ├── nios2 │ │ │ │ │ ├── ffi.c │ │ │ │ │ ├── ffitarget.h │ │ │ │ │ └── sysv.S │ │ │ │ ├── or1k │ │ │ │ │ ├── ffi.c │ │ │ │ │ ├── ffitarget.h │ │ │ │ │ └── sysv.S │ │ │ │ ├── pa │ │ │ │ │ ├── ffi.c │ │ │ │ │ ├── ffitarget.h │ │ │ │ │ ├── hpux32.S │ │ │ │ │ └── linux.S │ │ │ │ ├── powerpc │ │ │ │ │ ├── aix.S │ │ │ │ │ ├── aix_closure.S │ │ │ │ │ ├── asm.h │ │ │ │ │ ├── darwin.S │ │ │ │ │ ├── darwin_closure.S │ │ │ │ │ ├── ffi.c │ │ │ │ │ ├── ffi_darwin.c │ │ │ │ │ ├── ffi_linux64.c │ │ │ │ │ ├── ffi_powerpc.h │ │ │ │ │ ├── ffi_sysv.c │ │ │ │ │ ├── ffitarget.h │ │ │ │ │ ├── linux64.S │ │ │ │ │ ├── linux64_closure.S │ │ │ │ │ ├── ppc_closure.S │ │ │ │ │ └── sysv.S │ │ │ │ ├── prep_cif.c │ │ │ │ ├── raw_api.c │ │ │ │ ├── s390 │ │ │ │ │ ├── ffi.c │ │ │ │ │ ├── ffitarget.h │ │ │ │ │ └── sysv.S │ │ │ │ ├── sh │ │ │ │ │ ├── ffi.c │ │ │ │ │ ├── ffitarget.h │ │ │ │ │ └── sysv.S │ │ │ │ ├── sh64 │ │ │ │ │ ├── ffi.c │ │ │ │ │ ├── ffitarget.h │ │ │ │ │ └── sysv.S │ │ │ │ ├── sparc │ │ │ │ │ ├── ffi.c │ │ │ │ │ ├── ffitarget.h │ │ │ │ │ ├── v8.S │ │ │ │ │ └── v9.S │ │ │ │ ├── tile │ │ │ │ │ ├── ffi.c │ │ │ │ │ ├── ffitarget.h │ │ │ │ │ └── tile.S │ │ │ │ ├── types.c │ │ │ │ ├── vax │ │ │ │ │ ├── elfbsd.S │ │ │ │ │ ├── ffi.c │ │ │ │ │ └── ffitarget.h │ │ │ │ ├── x86 │ │ │ │ │ ├── darwin.S │ │ │ │ │ ├── darwin64.S │ │ │ │ │ ├── ffi.c │ │ │ │ │ ├── ffi.c.orig │ │ │ │ │ ├── ffi64.c │ │ │ │ │ ├── ffitarget.h │ │ │ │ │ ├── ffitarget.h.orig │ │ │ │ │ ├── freebsd.S │ │ │ │ │ ├── sysv.S │ │ │ │ │ ├── unix64.S │ │ │ │ │ ├── win32.S │ │ │ │ │ ├── win64.S │ │ │ │ │ └── win64.S.orig │ │ │ │ └── xtensa │ │ │ │ │ ├── ffi.c │ │ │ │ │ ├── ffitarget.h │ │ │ │ │ └── sysv.S │ │ │ ├── testsuite │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── config │ │ │ │ │ └── default.exp │ │ │ │ ├── lib │ │ │ │ │ ├── libffi.exp │ │ │ │ │ ├── target-libpath.exp │ │ │ │ │ └── wrapper.exp │ │ │ │ └── libffi.call │ │ │ │ │ ├── call.exp │ │ │ │ │ ├── closure_fn0.c │ │ │ │ │ ├── closure_fn1.c │ │ │ │ │ ├── closure_fn2.c │ │ │ │ │ ├── closure_fn3.c │ │ │ │ │ ├── closure_fn4.c │ │ │ │ │ ├── closure_fn5.c │ │ │ │ │ ├── closure_fn6.c │ │ │ │ │ ├── closure_loc_fn0.c │ │ │ │ │ ├── closure_simple.c │ │ │ │ │ ├── cls_12byte.c │ │ │ │ │ ├── cls_16byte.c │ │ │ │ │ ├── cls_18byte.c │ │ │ │ │ ├── cls_19byte.c │ │ │ │ │ ├── cls_1_1byte.c │ │ │ │ │ ├── cls_20byte.c │ │ │ │ │ ├── cls_20byte1.c │ │ │ │ │ ├── cls_24byte.c │ │ │ │ │ ├── cls_2byte.c │ │ │ │ │ ├── cls_3_1byte.c │ │ │ │ │ ├── cls_3byte1.c │ │ │ │ │ ├── cls_3byte2.c │ │ │ │ │ ├── cls_4_1byte.c │ │ │ │ │ ├── cls_4byte.c │ │ │ │ │ ├── cls_5_1_byte.c │ │ │ │ │ ├── cls_5byte.c │ │ │ │ │ ├── cls_64byte.c │ │ │ │ │ ├── cls_6_1_byte.c │ │ │ │ │ ├── cls_6byte.c │ │ │ │ │ ├── cls_7_1_byte.c │ │ │ │ │ ├── cls_7byte.c │ │ │ │ │ ├── cls_8byte.c │ │ │ │ │ ├── cls_9byte1.c │ │ │ │ │ ├── cls_9byte2.c │ │ │ │ │ ├── cls_align_double.c │ │ │ │ │ ├── cls_align_float.c │ │ │ │ │ ├── cls_align_longdouble.c │ │ │ │ │ ├── cls_align_longdouble_split.c │ │ │ │ │ ├── cls_align_longdouble_split2.c │ │ │ │ │ ├── cls_align_pointer.c │ │ │ │ │ ├── cls_align_sint16.c │ │ │ │ │ ├── cls_align_sint32.c │ │ │ │ │ ├── cls_align_sint64.c │ │ │ │ │ ├── cls_align_uint16.c │ │ │ │ │ ├── cls_align_uint32.c │ │ │ │ │ ├── cls_align_uint64.c │ │ │ │ │ ├── cls_dbls_struct.c │ │ │ │ │ ├── cls_double.c │ │ │ │ │ ├── cls_double_va.c │ │ │ │ │ ├── cls_float.c │ │ │ │ │ ├── cls_longdouble.c │ │ │ │ │ ├── cls_longdouble_va.c │ │ │ │ │ ├── cls_multi_schar.c │ │ │ │ │ ├── cls_multi_sshort.c │ │ │ │ │ ├── cls_multi_sshortchar.c │ │ │ │ │ ├── cls_multi_uchar.c │ │ │ │ │ ├── cls_multi_ushort.c │ │ │ │ │ ├── cls_multi_ushortchar.c │ │ │ │ │ ├── cls_pointer.c │ │ │ │ │ ├── cls_pointer_stack.c │ │ │ │ │ ├── cls_schar.c │ │ │ │ │ ├── cls_sint.c │ │ │ │ │ ├── cls_sshort.c │ │ │ │ │ ├── cls_struct_va1.c │ │ │ │ │ ├── cls_uchar.c │ │ │ │ │ ├── cls_uchar_va.c │ │ │ │ │ ├── cls_uint.c │ │ │ │ │ ├── cls_uint_va.c │ │ │ │ │ ├── cls_ulong_va.c │ │ │ │ │ ├── cls_ulonglong.c │ │ │ │ │ ├── cls_ushort.c │ │ │ │ │ ├── cls_ushort_va.c │ │ │ │ │ ├── err_bad_abi.c │ │ │ │ │ ├── err_bad_typedef.c │ │ │ │ │ ├── ffitest.h │ │ │ │ │ ├── float.c │ │ │ │ │ ├── float1.c │ │ │ │ │ ├── float2.c │ │ │ │ │ ├── float3.c │ │ │ │ │ ├── float4.c │ │ │ │ │ ├── float_va.c │ │ │ │ │ ├── huge_struct.c │ │ │ │ │ ├── many.c │ │ │ │ │ ├── many2.c │ │ │ │ │ ├── negint.c │ │ │ │ │ ├── nested_struct.c │ │ │ │ │ ├── nested_struct1.c │ │ │ │ │ ├── nested_struct10.c │ │ │ │ │ ├── nested_struct11.c │ │ │ │ │ ├── nested_struct2.c │ │ │ │ │ ├── nested_struct3.c │ │ │ │ │ ├── nested_struct4.c │ │ │ │ │ ├── nested_struct5.c │ │ │ │ │ ├── nested_struct6.c │ │ │ │ │ ├── nested_struct7.c │ │ │ │ │ ├── nested_struct8.c │ │ │ │ │ ├── nested_struct9.c │ │ │ │ │ ├── problem1.c │ │ │ │ │ ├── promotion.c │ │ │ │ │ ├── pyobjc-tc.c │ │ │ │ │ ├── return_dbl.c │ │ │ │ │ ├── return_dbl1.c │ │ │ │ │ ├── return_dbl2.c │ │ │ │ │ ├── return_fl.c │ │ │ │ │ ├── return_fl1.c │ │ │ │ │ ├── return_fl2.c │ │ │ │ │ ├── return_fl3.c │ │ │ │ │ ├── return_ldl.c │ │ │ │ │ ├── return_ll.c │ │ │ │ │ ├── return_ll1.c │ │ │ │ │ ├── return_sc.c │ │ │ │ │ ├── return_sl.c │ │ │ │ │ ├── return_uc.c │ │ │ │ │ ├── return_ul.c │ │ │ │ │ ├── stret_large.c │ │ │ │ │ ├── stret_large2.c │ │ │ │ │ ├── stret_medium.c │ │ │ │ │ ├── stret_medium2.c │ │ │ │ │ ├── strlen.c │ │ │ │ │ ├── strlen2.c │ │ │ │ │ ├── strlen3.c │ │ │ │ │ ├── strlen4.c │ │ │ │ │ ├── struct1.c │ │ │ │ │ ├── struct2.c │ │ │ │ │ ├── struct3.c │ │ │ │ │ ├── struct4.c │ │ │ │ │ ├── struct5.c │ │ │ │ │ ├── struct6.c │ │ │ │ │ ├── struct7.c │ │ │ │ │ ├── struct8.c │ │ │ │ │ ├── struct9.c │ │ │ │ │ ├── testclosure.c │ │ │ │ │ ├── uninitialized.c │ │ │ │ │ ├── unwindtest.cc │ │ │ │ │ ├── unwindtest_ffi_call.cc │ │ │ │ │ ├── va_1.c │ │ │ │ │ ├── va_struct1.c │ │ │ │ │ ├── va_struct2.c │ │ │ │ │ └── va_struct3.c │ │ │ └── texinfo.tex │ │ ├── pointer.c │ │ └── win32 │ │ │ ├── fficonfig.h │ │ │ ├── libffi-3.2.1-mswin.patch │ │ │ ├── libffi-config.rb │ │ │ └── libffi.mk.tmpl │ ├── gdbm │ │ ├── README │ │ ├── depend │ │ ├── extconf.rb │ │ └── gdbm.c │ ├── io │ │ ├── console │ │ │ ├── buildgem.sh │ │ │ ├── console.c │ │ │ ├── depend │ │ │ ├── extconf.rb │ │ │ ├── io-console.gemspec │ │ │ ├── lib │ │ │ │ └── console │ │ │ │ │ └── size.rb │ │ │ ├── win32_vk.chksum │ │ │ ├── win32_vk.inc │ │ │ └── win32_vk.list │ │ ├── nonblock │ │ │ ├── depend │ │ │ ├── extconf.rb │ │ │ └── nonblock.c │ │ └── wait │ │ │ ├── depend │ │ │ ├── extconf.rb │ │ │ └── wait.c │ ├── json │ │ ├── extconf.rb │ │ ├── fbuffer │ │ │ └── fbuffer.h │ │ ├── generator │ │ │ ├── depend │ │ │ ├── extconf.rb │ │ │ ├── generator.c │ │ │ └── generator.h │ │ ├── json.gemspec │ │ ├── lib │ │ │ ├── json.rb │ │ │ └── json │ │ │ │ ├── add │ │ │ │ ├── bigdecimal.rb │ │ │ │ ├── complex.rb │ │ │ │ ├── core.rb │ │ │ │ ├── date.rb │ │ │ │ ├── date_time.rb │ │ │ │ ├── exception.rb │ │ │ │ ├── ostruct.rb │ │ │ │ ├── range.rb │ │ │ │ ├── rational.rb │ │ │ │ ├── regexp.rb │ │ │ │ ├── struct.rb │ │ │ │ ├── symbol.rb │ │ │ │ └── time.rb │ │ │ │ ├── common.rb │ │ │ │ ├── ext.rb │ │ │ │ ├── generic_object.rb │ │ │ │ └── version.rb │ │ └── parser │ │ │ ├── depend │ │ │ ├── extconf.rb │ │ │ ├── parser.c │ │ │ ├── parser.h │ │ │ ├── parser.rl │ │ │ └── prereq.mk │ ├── mathn │ │ ├── complex │ │ │ ├── complex.c │ │ │ └── extconf.rb │ │ └── rational │ │ │ ├── extconf.rb │ │ │ └── rational.c │ ├── nkf │ │ ├── depend │ │ ├── extconf.rb │ │ ├── lib │ │ │ └── kconv.rb │ │ ├── nkf-utf8 │ │ │ ├── config.h │ │ │ ├── nkf.c │ │ │ ├── nkf.h │ │ │ ├── utf8tbl.c │ │ │ └── utf8tbl.h │ │ └── nkf.c │ ├── objspace │ │ ├── depend │ │ ├── extconf.rb │ │ ├── object_tracing.c │ │ ├── objspace.c │ │ ├── objspace.h │ │ └── objspace_dump.c │ ├── openssl │ │ ├── History.md │ │ ├── depend │ │ ├── deprecation.rb │ │ ├── extconf.rb │ │ ├── lib │ │ │ ├── openssl.rb │ │ │ └── openssl │ │ │ │ ├── bn.rb │ │ │ │ ├── buffering.rb │ │ │ │ ├── cipher.rb │ │ │ │ ├── config.rb │ │ │ │ ├── digest.rb │ │ │ │ ├── pkey.rb │ │ │ │ ├── ssl.rb │ │ │ │ └── x509.rb │ │ ├── openssl.gemspec │ │ ├── openssl_missing.c │ │ ├── openssl_missing.h │ │ ├── ossl.c │ │ ├── ossl.h │ │ ├── ossl_asn1.c │ │ ├── ossl_asn1.h │ │ ├── ossl_bio.c │ │ ├── ossl_bio.h │ │ ├── ossl_bn.c │ │ ├── ossl_bn.h │ │ ├── ossl_cipher.c │ │ ├── ossl_cipher.h │ │ ├── ossl_config.c │ │ ├── ossl_config.h │ │ ├── ossl_digest.c │ │ ├── ossl_digest.h │ │ ├── ossl_engine.c │ │ ├── ossl_engine.h │ │ ├── ossl_hmac.c │ │ ├── ossl_hmac.h │ │ ├── ossl_ns_spki.c │ │ ├── ossl_ns_spki.h │ │ ├── ossl_ocsp.c │ │ ├── ossl_ocsp.h │ │ ├── ossl_pkcs12.c │ │ ├── ossl_pkcs12.h │ │ ├── ossl_pkcs5.c │ │ ├── ossl_pkcs5.h │ │ ├── ossl_pkcs7.c │ │ ├── ossl_pkcs7.h │ │ ├── ossl_pkey.c │ │ ├── ossl_pkey.h │ │ ├── ossl_pkey_dh.c │ │ ├── ossl_pkey_dsa.c │ │ ├── ossl_pkey_ec.c │ │ ├── ossl_pkey_rsa.c │ │ ├── ossl_rand.c │ │ ├── ossl_rand.h │ │ ├── ossl_ssl.c │ │ ├── ossl_ssl.h │ │ ├── ossl_ssl_session.c │ │ ├── ossl_version.h │ │ ├── ossl_x509.c │ │ ├── ossl_x509.h │ │ ├── ossl_x509attr.c │ │ ├── ossl_x509cert.c │ │ ├── ossl_x509crl.c │ │ ├── ossl_x509ext.c │ │ ├── ossl_x509name.c │ │ ├── ossl_x509req.c │ │ ├── ossl_x509revoked.c │ │ ├── ossl_x509store.c │ │ └── ruby_missing.h │ ├── pathname │ │ ├── depend │ │ ├── extconf.rb │ │ ├── lib │ │ │ └── pathname.rb │ │ └── pathname.c │ ├── psych │ │ ├── depend │ │ ├── extconf.rb │ │ ├── lib │ │ │ ├── psych.rb │ │ │ └── psych │ │ │ │ ├── class_loader.rb │ │ │ │ ├── coder.rb │ │ │ │ ├── core_ext.rb │ │ │ │ ├── deprecated.rb │ │ │ │ ├── exception.rb │ │ │ │ ├── handler.rb │ │ │ │ ├── handlers │ │ │ │ ├── document_stream.rb │ │ │ │ └── recorder.rb │ │ │ │ ├── json │ │ │ │ ├── ruby_events.rb │ │ │ │ ├── stream.rb │ │ │ │ ├── tree_builder.rb │ │ │ │ └── yaml_events.rb │ │ │ │ ├── nodes.rb │ │ │ │ ├── nodes │ │ │ │ ├── alias.rb │ │ │ │ ├── document.rb │ │ │ │ ├── mapping.rb │ │ │ │ ├── node.rb │ │ │ │ ├── scalar.rb │ │ │ │ ├── sequence.rb │ │ │ │ └── stream.rb │ │ │ │ ├── omap.rb │ │ │ │ ├── parser.rb │ │ │ │ ├── scalar_scanner.rb │ │ │ │ ├── set.rb │ │ │ │ ├── stream.rb │ │ │ │ ├── streaming.rb │ │ │ │ ├── syntax_error.rb │ │ │ │ ├── tree_builder.rb │ │ │ │ ├── versions.rb │ │ │ │ ├── visitors.rb │ │ │ │ ├── visitors │ │ │ │ ├── depth_first.rb │ │ │ │ ├── emitter.rb │ │ │ │ ├── json_tree.rb │ │ │ │ ├── to_ruby.rb │ │ │ │ ├── visitor.rb │ │ │ │ └── yaml_tree.rb │ │ │ │ └── y.rb │ │ ├── psych.c │ │ ├── psych.gemspec │ │ ├── psych.h │ │ ├── psych_emitter.c │ │ ├── psych_emitter.h │ │ ├── psych_parser.c │ │ ├── psych_parser.h │ │ ├── psych_to_ruby.c │ │ ├── psych_to_ruby.h │ │ ├── psych_yaml_tree.c │ │ ├── psych_yaml_tree.h │ │ └── yaml │ │ │ ├── LICENSE │ │ │ ├── api.c │ │ │ ├── config.h │ │ │ ├── dumper.c │ │ │ ├── emitter.c │ │ │ ├── loader.c │ │ │ ├── parser.c │ │ │ ├── reader.c │ │ │ ├── scanner.c │ │ │ ├── writer.c │ │ │ ├── yaml.h │ │ │ └── yaml_private.h │ ├── pty │ │ ├── depend │ │ ├── extconf.rb │ │ ├── lib │ │ │ └── expect.rb │ │ └── pty.c │ ├── racc │ │ └── cparse │ │ │ ├── README │ │ │ ├── cparse.c │ │ │ ├── depend │ │ │ └── extconf.rb │ ├── rbconfig │ │ └── sizeof │ │ │ ├── depend │ │ │ ├── extconf.rb │ │ │ └── sizes.c │ ├── readline │ │ ├── README │ │ ├── README.ja │ │ ├── depend │ │ ├── extconf.rb │ │ └── readline.c │ ├── ripper │ │ ├── README │ │ ├── depend │ │ ├── eventids1.c │ │ ├── eventids2.c │ │ ├── eventids2table.c │ │ ├── extconf.rb │ │ ├── lib │ │ │ ├── ripper.rb │ │ │ └── ripper │ │ │ │ ├── core.rb │ │ │ │ ├── filter.rb │ │ │ │ ├── lexer.rb │ │ │ │ └── sexp.rb │ │ ├── ripper.c │ │ ├── ripper.y │ │ ├── tools │ │ │ ├── generate-param-macros.rb │ │ │ ├── generate.rb │ │ │ ├── preproc.rb │ │ │ └── strip.rb │ │ └── y.output │ ├── rubyvm │ │ ├── extconf.rb │ │ └── lib │ │ │ └── forwardable │ │ │ └── impl.rb │ ├── sdbm │ │ ├── _sdbm.c │ │ ├── depend │ │ ├── extconf.rb │ │ ├── init.c │ │ └── sdbm.h │ ├── socket │ │ ├── .document │ │ ├── addrinfo.h │ │ ├── ancdata.c │ │ ├── basicsocket.c │ │ ├── constants.c │ │ ├── constdefs.c │ │ ├── constdefs.h │ │ ├── depend │ │ ├── extconf.rb │ │ ├── getaddrinfo.c │ │ ├── getnameinfo.c │ │ ├── ifaddr.c │ │ ├── init.c │ │ ├── ipsocket.c │ │ ├── lib │ │ │ └── socket.rb │ │ ├── mkconstants.rb │ │ ├── option.c │ │ ├── raddrinfo.c │ │ ├── rubysocket.h │ │ ├── socket.c │ │ ├── sockport.h │ │ ├── sockssocket.c │ │ ├── tcpserver.c │ │ ├── tcpsocket.c │ │ ├── udpsocket.c │ │ ├── unixserver.c │ │ └── unixsocket.c │ ├── stringio │ │ ├── README.md │ │ ├── depend │ │ ├── extconf.rb │ │ └── stringio.c │ ├── strscan │ │ ├── depend │ │ ├── extconf.rb │ │ └── strscan.c │ ├── syslog │ │ ├── depend │ │ ├── extconf.rb │ │ ├── lib │ │ │ └── syslog │ │ │ │ └── logger.rb │ │ ├── syslog.c │ │ └── syslog.txt │ ├── win32 │ │ ├── extconf.rb │ │ ├── lib │ │ │ ├── Win32API.rb │ │ │ └── win32 │ │ │ │ ├── importer.rb │ │ │ │ ├── registry.rb │ │ │ │ ├── resolv.rb │ │ │ │ ├── resolv9x.rb │ │ │ │ └── sspi.rb │ │ └── resolv │ │ │ ├── extconf.rb │ │ │ └── resolv.c │ ├── win32ole │ │ ├── depend │ │ ├── extconf.rb │ │ ├── lib │ │ │ └── win32ole │ │ │ │ └── property.rb │ │ ├── sample │ │ │ ├── excel1.rb │ │ │ ├── excel2.rb │ │ │ ├── excel3.rb │ │ │ ├── ie.rb │ │ │ ├── ieconst.rb │ │ │ ├── ienavi.rb │ │ │ ├── ienavi2.rb │ │ │ ├── oledirs.rb │ │ │ ├── olegen.rb │ │ │ └── xml.rb │ │ ├── win32ole.c │ │ ├── win32ole.h │ │ ├── win32ole_error.c │ │ ├── win32ole_error.h │ │ ├── win32ole_event.c │ │ ├── win32ole_event.h │ │ ├── win32ole_method.c │ │ ├── win32ole_method.h │ │ ├── win32ole_param.c │ │ ├── win32ole_param.h │ │ ├── win32ole_record.c │ │ ├── win32ole_record.h │ │ ├── win32ole_type.c │ │ ├── win32ole_type.h │ │ ├── win32ole_typelib.c │ │ ├── win32ole_typelib.h │ │ ├── win32ole_variable.c │ │ ├── win32ole_variable.h │ │ ├── win32ole_variant.c │ │ ├── win32ole_variant.h │ │ ├── win32ole_variant_m.c │ │ └── win32ole_variant_m.h │ └── zlib │ │ ├── depend │ │ ├── extconf.rb │ │ └── zlib.c ├── file.c ├── gc.c ├── gc.h ├── gem_prelude.rb ├── gems │ ├── bundled_gems │ ├── did_you_mean-1.1.0.gem │ ├── did_you_mean-1.1.0 │ │ ├── .ruby-version │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── Gemfile │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── Rakefile │ │ ├── benchmark │ │ │ ├── jaro_winkler │ │ │ │ ├── memory_usage.rb │ │ │ │ └── speed.rb │ │ │ ├── levenshtein │ │ │ │ ├── memory_usage.rb │ │ │ │ └── speed.rb │ │ │ └── memory_usage.rb │ │ ├── did_you_mean.gemspec │ │ ├── doc │ │ │ ├── CHANGELOG.md.erb │ │ │ └── changelog_generator.rb │ │ ├── evaluation │ │ │ ├── calculator.rb │ │ │ ├── dictionary_generator.rb │ │ │ └── incorrect_words.yaml │ │ ├── lib │ │ │ ├── did_you_mean.rb │ │ │ └── did_you_mean │ │ │ │ ├── core_ext │ │ │ │ └── name_error.rb │ │ │ │ ├── experimental.rb │ │ │ │ ├── experimental │ │ │ │ ├── initializer_name_correction.rb │ │ │ │ ├── ivar_name_correction.rb │ │ │ │ └── key_error_name_correction.rb │ │ │ │ ├── formatter.rb │ │ │ │ ├── jaro_winkler.rb │ │ │ │ ├── levenshtein.rb │ │ │ │ ├── spell_checker.rb │ │ │ │ ├── spell_checkers │ │ │ │ ├── method_name_checker.rb │ │ │ │ ├── name_error_checkers.rb │ │ │ │ ├── name_error_checkers │ │ │ │ │ ├── class_name_checker.rb │ │ │ │ │ └── variable_name_checker.rb │ │ │ │ └── null_checker.rb │ │ │ │ ├── verbose_formatter.rb │ │ │ │ └── version.rb │ │ └── test │ │ │ ├── core_ext │ │ │ └── name_error_extension_test.rb │ │ │ ├── edit_distance │ │ │ └── jaro_winkler_test.rb │ │ │ ├── experimental │ │ │ ├── initializer_name_correction_test.rb │ │ │ ├── key_error_test.rb │ │ │ └── method_name_checker_test.rb │ │ │ ├── spell_checker_test.rb │ │ │ ├── spell_checking │ │ │ ├── class_name_test.rb │ │ │ ├── method_name_test.rb │ │ │ ├── uncorrectable_name_test.rb │ │ │ └── variable_name_test.rb │ │ │ ├── test_helper.rb │ │ │ └── verbose_formatter_test.rb │ ├── minitest-5.10.1.gem │ ├── minitest-5.10.1 │ │ ├── .autotest │ │ ├── History.rdoc │ │ ├── Manifest.txt │ │ ├── README.rdoc │ │ ├── Rakefile │ │ ├── design_rationale.rb │ │ ├── lib │ │ │ ├── hoe │ │ │ │ └── minitest.rb │ │ │ ├── minitest.rb │ │ │ └── minitest │ │ │ │ ├── assertions.rb │ │ │ │ ├── autorun.rb │ │ │ │ ├── benchmark.rb │ │ │ │ ├── expectations.rb │ │ │ │ ├── hell.rb │ │ │ │ ├── mock.rb │ │ │ │ ├── parallel.rb │ │ │ │ ├── pride.rb │ │ │ │ ├── pride_plugin.rb │ │ │ │ ├── spec.rb │ │ │ │ ├── test.rb │ │ │ │ └── unit.rb │ │ ├── minitest.gemspec │ │ └── test │ │ │ └── minitest │ │ │ ├── metametameta.rb │ │ │ ├── test_minitest_benchmark.rb │ │ │ ├── test_minitest_mock.rb │ │ │ ├── test_minitest_reporter.rb │ │ │ ├── test_minitest_spec.rb │ │ │ └── test_minitest_test.rb │ ├── net-telnet-0.1.1.gem │ ├── net-telnet-0.1.1 │ │ ├── .travis.yml │ │ ├── Gemfile │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── Rakefile │ │ ├── bin │ │ │ ├── console │ │ │ └── setup │ │ ├── lib │ │ │ ├── net-telnet.rb │ │ │ └── net │ │ │ │ ├── telnet.rb │ │ │ │ └── telnet │ │ │ │ └── version.rb │ │ └── net-telnet.gemspec │ ├── power_assert-0.4.1.gem │ ├── power_assert-0.4.1 │ │ ├── .travis.yml │ │ ├── BSDL │ │ ├── COPYING │ │ ├── Gemfile │ │ ├── LEGAL │ │ ├── README.rdoc │ │ ├── Rakefile │ │ ├── benchmarks │ │ │ ├── bm_yhpg.rb │ │ │ └── helper.rb │ │ ├── lib │ │ │ ├── power_assert.rb │ │ │ └── power_assert │ │ │ │ ├── configuration.rb │ │ │ │ ├── enable_tracepoint_events.rb │ │ │ │ └── version.rb │ │ ├── power_assert.gemspec │ │ └── test │ │ │ ├── helper.rb │ │ │ └── test_power_assert.rb │ ├── rake-12.0.0.gem │ ├── rake-12.0.0 │ │ ├── .rubocop.yml │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.rdoc │ │ ├── Gemfile │ │ ├── History.rdoc │ │ ├── MIT-LICENSE │ │ ├── README.rdoc │ │ ├── Rakefile │ │ ├── appveyor.yml │ │ ├── bin │ │ │ ├── console │ │ │ └── setup │ │ ├── doc │ │ │ ├── command_line_usage.rdoc │ │ │ ├── example │ │ │ │ ├── Rakefile1 │ │ │ │ ├── Rakefile2 │ │ │ │ ├── a.c │ │ │ │ ├── b.c │ │ │ │ └── main.c │ │ │ ├── glossary.rdoc │ │ │ ├── jamis.rb │ │ │ ├── proto_rake.rdoc │ │ │ ├── rake.1 │ │ │ ├── rakefile.rdoc │ │ │ └── rational.rdoc │ │ ├── exe │ │ │ └── rake │ │ ├── lib │ │ │ ├── rake.rb │ │ │ └── rake │ │ │ │ ├── application.rb │ │ │ │ ├── backtrace.rb │ │ │ │ ├── clean.rb │ │ │ │ ├── cloneable.rb │ │ │ │ ├── cpu_counter.rb │ │ │ │ ├── default_loader.rb │ │ │ │ ├── dsl_definition.rb │ │ │ │ ├── early_time.rb │ │ │ │ ├── ext │ │ │ │ ├── core.rb │ │ │ │ └── string.rb │ │ │ │ ├── file_creation_task.rb │ │ │ │ ├── file_list.rb │ │ │ │ ├── file_task.rb │ │ │ │ ├── file_utils.rb │ │ │ │ ├── file_utils_ext.rb │ │ │ │ ├── invocation_chain.rb │ │ │ │ ├── invocation_exception_mixin.rb │ │ │ │ ├── late_time.rb │ │ │ │ ├── linked_list.rb │ │ │ │ ├── loaders │ │ │ │ └── makefile.rb │ │ │ │ ├── multi_task.rb │ │ │ │ ├── name_space.rb │ │ │ │ ├── packagetask.rb │ │ │ │ ├── phony.rb │ │ │ │ ├── private_reader.rb │ │ │ │ ├── promise.rb │ │ │ │ ├── pseudo_status.rb │ │ │ │ ├── rake_module.rb │ │ │ │ ├── rake_test_loader.rb │ │ │ │ ├── rule_recursion_overflow_error.rb │ │ │ │ ├── scope.rb │ │ │ │ ├── task.rb │ │ │ │ ├── task_argument_error.rb │ │ │ │ ├── task_arguments.rb │ │ │ │ ├── task_manager.rb │ │ │ │ ├── tasklib.rb │ │ │ │ ├── testtask.rb │ │ │ │ ├── thread_history_display.rb │ │ │ │ ├── thread_pool.rb │ │ │ │ ├── trace_output.rb │ │ │ │ ├── version.rb │ │ │ │ └── win32.rb │ │ └── rake.gemspec │ ├── test-unit-3.2.3.gem │ ├── test-unit-3.2.3 │ │ ├── COPYING │ │ ├── GPL │ │ ├── LGPL │ │ ├── PSFL │ │ ├── README.md │ │ ├── Rakefile │ │ ├── doc │ │ │ └── text │ │ │ │ ├── how-to.md │ │ │ │ └── news.md │ │ ├── lib │ │ │ ├── test-unit.rb │ │ │ └── test │ │ │ │ ├── unit.rb │ │ │ │ └── unit │ │ │ │ ├── assertion-failed-error.rb │ │ │ │ ├── assertions.rb │ │ │ │ ├── attribute-matcher.rb │ │ │ │ ├── attribute.rb │ │ │ │ ├── auto-runner-loader.rb │ │ │ │ ├── autorunner.rb │ │ │ │ ├── code-snippet-fetcher.rb │ │ │ │ ├── collector.rb │ │ │ │ ├── collector │ │ │ │ ├── descendant.rb │ │ │ │ ├── dir.rb │ │ │ │ ├── load.rb │ │ │ │ ├── objectspace.rb │ │ │ │ └── xml.rb │ │ │ │ ├── color-scheme.rb │ │ │ │ ├── color.rb │ │ │ │ ├── data.rb │ │ │ │ ├── diff.rb │ │ │ │ ├── error.rb │ │ │ │ ├── exception-handler.rb │ │ │ │ ├── failure.rb │ │ │ │ ├── fault-location-detector.rb │ │ │ │ ├── fixture.rb │ │ │ │ ├── notification.rb │ │ │ │ ├── omission.rb │ │ │ │ ├── pending.rb │ │ │ │ ├── priority.rb │ │ │ │ ├── runner │ │ │ │ ├── console.rb │ │ │ │ ├── emacs.rb │ │ │ │ └── xml.rb │ │ │ │ ├── test-suite-creator.rb │ │ │ │ ├── testcase.rb │ │ │ │ ├── testresult.rb │ │ │ │ ├── testsuite.rb │ │ │ │ ├── ui │ │ │ │ ├── console │ │ │ │ │ ├── outputlevel.rb │ │ │ │ │ └── testrunner.rb │ │ │ │ ├── emacs │ │ │ │ │ └── testrunner.rb │ │ │ │ ├── testrunner.rb │ │ │ │ ├── testrunnermediator.rb │ │ │ │ ├── testrunnerutilities.rb │ │ │ │ └── xml │ │ │ │ │ └── testrunner.rb │ │ │ │ ├── util │ │ │ │ ├── backtracefilter.rb │ │ │ │ ├── method-owner-finder.rb │ │ │ │ ├── observable.rb │ │ │ │ ├── output.rb │ │ │ │ └── procwrapper.rb │ │ │ │ └── version.rb │ │ ├── sample │ │ │ ├── adder.rb │ │ │ ├── subtracter.rb │ │ │ ├── test_adder.rb │ │ │ ├── test_subtracter.rb │ │ │ └── test_user.rb │ │ ├── test-unit.gemspec │ │ └── test │ │ │ ├── collector │ │ │ ├── test-descendant.rb │ │ │ ├── test-load.rb │ │ │ ├── test_dir.rb │ │ │ └── test_objectspace.rb │ │ │ ├── fixtures │ │ │ ├── header-label.csv │ │ │ ├── header-label.tsv │ │ │ ├── header.csv │ │ │ ├── header.tsv │ │ │ ├── no-header.csv │ │ │ ├── no-header.tsv │ │ │ └── plus.csv │ │ │ ├── run-test.rb │ │ │ ├── test-assertions.rb │ │ │ ├── test-attribute-matcher.rb │ │ │ ├── test-attribute.rb │ │ │ ├── test-code-snippet.rb │ │ │ ├── test-color-scheme.rb │ │ │ ├── test-color.rb │ │ │ ├── test-data.rb │ │ │ ├── test-diff.rb │ │ │ ├── test-emacs-runner.rb │ │ │ ├── test-error.rb │ │ │ ├── test-failure.rb │ │ │ ├── test-fault-location-detector.rb │ │ │ ├── test-fixture.rb │ │ │ ├── test-notification.rb │ │ │ ├── test-omission.rb │ │ │ ├── test-pending.rb │ │ │ ├── test-priority.rb │ │ │ ├── test-test-case.rb │ │ │ ├── test-test-result.rb │ │ │ ├── test-test-suite-creator.rb │ │ │ ├── test-test-suite.rb │ │ │ ├── testunit-test-util.rb │ │ │ ├── ui │ │ │ └── test_testrunmediator.rb │ │ │ └── util │ │ │ ├── test-method-owner-finder.rb │ │ │ ├── test-output.rb │ │ │ ├── test_backtracefilter.rb │ │ │ ├── test_observable.rb │ │ │ └── test_procwrapper.rb │ ├── xmlrpc-0.2.1.gem │ └── xmlrpc-0.2.1 │ │ ├── .travis.yml │ │ ├── Gemfile │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── Rakefile │ │ ├── bin │ │ ├── console │ │ └── setup │ │ ├── lib │ │ ├── xmlrpc.rb │ │ └── xmlrpc │ │ │ ├── base64.rb │ │ │ ├── client.rb │ │ │ ├── config.rb │ │ │ ├── create.rb │ │ │ ├── datetime.rb │ │ │ ├── marshal.rb │ │ │ ├── parser.rb │ │ │ ├── server.rb │ │ │ └── utils.rb │ │ └── xmlrpc.gemspec ├── golf_prelude.c ├── golf_prelude.rb ├── goruby.c ├── hash.c ├── ia64.s ├── id.c ├── id.h ├── id_table.c ├── id_table.h ├── include │ ├── autoupdate.h │ ├── autoupdate_internal.h │ ├── enclose_io.h │ ├── enclose_io_common.h │ ├── enclose_io_prelude.h │ ├── enclose_io_unix.h │ ├── enclose_io_win32.h │ ├── enclose_io_winapi.h │ ├── ruby.h │ ├── ruby │ │ ├── backward.h │ │ ├── backward │ │ │ ├── classext.h │ │ │ ├── rubyio.h │ │ │ ├── rubysig.h │ │ │ ├── st.h │ │ │ └── util.h │ │ ├── debug.h │ │ ├── defines.h │ │ ├── encoding.h │ │ ├── intern.h │ │ ├── io.h │ │ ├── missing.h │ │ ├── onigmo.h │ │ ├── oniguruma.h │ │ ├── re.h │ │ ├── regex.h │ │ ├── ruby.h │ │ ├── st.h │ │ ├── subst.h │ │ ├── thread.h │ │ ├── thread_native.h │ │ ├── util.h │ │ ├── version.h │ │ ├── vm.h │ │ └── win32.h │ ├── squash.h │ └── squash │ │ ├── cache.h │ │ ├── common.h │ │ ├── decompress.h │ │ ├── dir.h │ │ ├── dirent.h │ │ ├── fdtable.h │ │ ├── file.h │ │ ├── fs.h │ │ ├── hash.h │ │ ├── mutex.h │ │ ├── nonstd.h │ │ ├── private.h │ │ ├── squashfs_fs.h │ │ ├── stack.h │ │ ├── table.h │ │ ├── traverse.h │ │ ├── util.h │ │ └── windows.h ├── inits.c ├── insns.def ├── insns.inc ├── insns_info.inc ├── internal.h ├── io.c ├── iseq.c ├── iseq.h ├── known_errors.inc ├── lex.c ├── lex.c.blt ├── lib │ ├── English.rb │ ├── abbrev.rb │ ├── base64.rb │ ├── benchmark.rb │ ├── cgi.rb │ ├── cgi │ │ ├── cookie.rb │ │ ├── core.rb │ │ ├── html.rb │ │ ├── session.rb │ │ ├── session │ │ │ └── pstore.rb │ │ └── util.rb │ ├── cmath.rb │ ├── csv.rb │ ├── debug.rb │ ├── delegate.rb │ ├── drb.rb │ ├── drb │ │ ├── acl.rb │ │ ├── drb.rb │ │ ├── eq.rb │ │ ├── extserv.rb │ │ ├── extservm.rb │ │ ├── gw.rb │ │ ├── invokemethod.rb │ │ ├── observer.rb │ │ ├── ssl.rb │ │ ├── timeridconv.rb │ │ └── unix.rb │ ├── e2mmap.rb │ ├── erb.rb │ ├── fileutils.rb │ ├── find.rb │ ├── forwardable.rb │ ├── forwardable │ │ └── impl.rb │ ├── getoptlong.rb │ ├── ipaddr.rb │ ├── irb.rb │ ├── irb │ │ ├── cmd │ │ │ ├── chws.rb │ │ │ ├── fork.rb │ │ │ ├── help.rb │ │ │ ├── load.rb │ │ │ ├── nop.rb │ │ │ ├── pushws.rb │ │ │ └── subirb.rb │ │ ├── completion.rb │ │ ├── context.rb │ │ ├── ext │ │ │ ├── change-ws.rb │ │ │ ├── history.rb │ │ │ ├── loader.rb │ │ │ ├── math-mode.rb │ │ │ ├── multi-irb.rb │ │ │ ├── save-history.rb │ │ │ ├── tracer.rb │ │ │ ├── use-loader.rb │ │ │ └── workspaces.rb │ │ ├── extend-command.rb │ │ ├── frame.rb │ │ ├── help.rb │ │ ├── init.rb │ │ ├── input-method.rb │ │ ├── inspector.rb │ │ ├── lc │ │ │ ├── .document │ │ │ ├── error.rb │ │ │ ├── help-message │ │ │ └── ja │ │ │ │ ├── encoding_aliases.rb │ │ │ │ ├── error.rb │ │ │ │ └── help-message │ │ ├── locale.rb │ │ ├── magic-file.rb │ │ ├── notifier.rb │ │ ├── output-method.rb │ │ ├── ruby-lex.rb │ │ ├── ruby-token.rb │ │ ├── slex.rb │ │ ├── src_encoding.rb │ │ ├── version.rb │ │ ├── workspace.rb │ │ ├── ws-for-case-2.rb │ │ └── xmp.rb │ ├── logger.rb │ ├── mathn.rb │ ├── matrix.rb │ ├── matrix │ │ ├── eigenvalue_decomposition.rb │ │ └── lup_decomposition.rb │ ├── mkmf.rb │ ├── monitor.rb │ ├── mutex_m.rb │ ├── net │ │ ├── ftp.rb │ │ ├── http.rb │ │ ├── http │ │ │ ├── backward.rb │ │ │ ├── exceptions.rb │ │ │ ├── generic_request.rb │ │ │ ├── header.rb │ │ │ ├── proxy_delta.rb │ │ │ ├── request.rb │ │ │ ├── requests.rb │ │ │ ├── response.rb │ │ │ └── responses.rb │ │ ├── https.rb │ │ ├── imap.rb │ │ ├── pop.rb │ │ ├── protocol.rb │ │ └── smtp.rb │ ├── observer.rb │ ├── open-uri.rb │ ├── open3.rb │ ├── optionparser.rb │ ├── optparse.rb │ ├── optparse │ │ ├── ac.rb │ │ ├── date.rb │ │ ├── kwargs.rb │ │ ├── shellwords.rb │ │ ├── time.rb │ │ ├── uri.rb │ │ └── version.rb │ ├── ostruct.rb │ ├── pp.rb │ ├── prettyprint.rb │ ├── prime.rb │ ├── profile.rb │ ├── profiler.rb │ ├── pstore.rb │ ├── racc │ │ ├── parser.rb │ │ └── rdoc │ │ │ └── grammar.en.rdoc │ ├── rbconfig │ │ ├── .document │ │ └── datadir.rb │ ├── rdoc.rb │ ├── rdoc │ │ ├── .document │ │ ├── alias.rb │ │ ├── anon_class.rb │ │ ├── any_method.rb │ │ ├── attr.rb │ │ ├── class_module.rb │ │ ├── code_object.rb │ │ ├── code_objects.rb │ │ ├── comment.rb │ │ ├── constant.rb │ │ ├── context.rb │ │ ├── context │ │ │ └── section.rb │ │ ├── cross_reference.rb │ │ ├── encoding.rb │ │ ├── erb_partial.rb │ │ ├── erbio.rb │ │ ├── extend.rb │ │ ├── generator.rb │ │ ├── generator │ │ │ ├── darkfish.rb │ │ │ ├── json_index.rb │ │ │ ├── markup.rb │ │ │ ├── pot.rb │ │ │ ├── pot │ │ │ │ ├── message_extractor.rb │ │ │ │ ├── po.rb │ │ │ │ └── po_entry.rb │ │ │ ├── ri.rb │ │ │ └── template │ │ │ │ ├── darkfish │ │ │ │ ├── .document │ │ │ │ ├── _footer.rhtml │ │ │ │ ├── _head.rhtml │ │ │ │ ├── _sidebar_VCS_info.rhtml │ │ │ │ ├── _sidebar_classes.rhtml │ │ │ │ ├── _sidebar_extends.rhtml │ │ │ │ ├── _sidebar_in_files.rhtml │ │ │ │ ├── _sidebar_includes.rhtml │ │ │ │ ├── _sidebar_installed.rhtml │ │ │ │ ├── _sidebar_methods.rhtml │ │ │ │ ├── _sidebar_navigation.rhtml │ │ │ │ ├── _sidebar_pages.rhtml │ │ │ │ ├── _sidebar_parent.rhtml │ │ │ │ ├── _sidebar_search.rhtml │ │ │ │ ├── _sidebar_sections.rhtml │ │ │ │ ├── _sidebar_table_of_contents.rhtml │ │ │ │ ├── class.rhtml │ │ │ │ ├── css │ │ │ │ │ ├── fonts.css │ │ │ │ │ └── rdoc.css │ │ │ │ ├── fonts │ │ │ │ │ ├── Lato-Light.ttf │ │ │ │ │ ├── Lato-LightItalic.ttf │ │ │ │ │ ├── Lato-Regular.ttf │ │ │ │ │ ├── Lato-RegularItalic.ttf │ │ │ │ │ ├── SourceCodePro-Bold.ttf │ │ │ │ │ └── SourceCodePro-Regular.ttf │ │ │ │ ├── images │ │ │ │ │ ├── add.png │ │ │ │ │ ├── arrow_up.png │ │ │ │ │ ├── brick.png │ │ │ │ │ ├── brick_link.png │ │ │ │ │ ├── bug.png │ │ │ │ │ ├── bullet_black.png │ │ │ │ │ ├── bullet_toggle_minus.png │ │ │ │ │ ├── bullet_toggle_plus.png │ │ │ │ │ ├── date.png │ │ │ │ │ ├── delete.png │ │ │ │ │ ├── find.png │ │ │ │ │ ├── loadingAnimation.gif │ │ │ │ │ ├── macFFBgHack.png │ │ │ │ │ ├── package.png │ │ │ │ │ ├── page_green.png │ │ │ │ │ ├── page_white_text.png │ │ │ │ │ ├── page_white_width.png │ │ │ │ │ ├── plugin.png │ │ │ │ │ ├── ruby.png │ │ │ │ │ ├── tag_blue.png │ │ │ │ │ ├── tag_green.png │ │ │ │ │ ├── transparent.png │ │ │ │ │ ├── wrench.png │ │ │ │ │ ├── wrench_orange.png │ │ │ │ │ └── zoom.png │ │ │ │ ├── index.rhtml │ │ │ │ ├── js │ │ │ │ │ ├── darkfish.js │ │ │ │ │ ├── jquery.js │ │ │ │ │ └── search.js │ │ │ │ ├── page.rhtml │ │ │ │ ├── servlet_not_found.rhtml │ │ │ │ ├── servlet_root.rhtml │ │ │ │ └── table_of_contents.rhtml │ │ │ │ └── json_index │ │ │ │ ├── .document │ │ │ │ └── js │ │ │ │ ├── navigation.js │ │ │ │ └── searcher.js │ │ ├── ghost_method.rb │ │ ├── i18n.rb │ │ ├── i18n │ │ │ ├── locale.rb │ │ │ └── text.rb │ │ ├── include.rb │ │ ├── known_classes.rb │ │ ├── markdown.rb │ │ ├── markdown │ │ │ ├── entities.rb │ │ │ └── literals.rb │ │ ├── markup.rb │ │ ├── markup │ │ │ ├── attr_changer.rb │ │ │ ├── attr_span.rb │ │ │ ├── attribute_manager.rb │ │ │ ├── attributes.rb │ │ │ ├── blank_line.rb │ │ │ ├── block_quote.rb │ │ │ ├── document.rb │ │ │ ├── formatter.rb │ │ │ ├── formatter_test_case.rb │ │ │ ├── hard_break.rb │ │ │ ├── heading.rb │ │ │ ├── include.rb │ │ │ ├── indented_paragraph.rb │ │ │ ├── inline.rb │ │ │ ├── list.rb │ │ │ ├── list_item.rb │ │ │ ├── paragraph.rb │ │ │ ├── parser.rb │ │ │ ├── pre_process.rb │ │ │ ├── raw.rb │ │ │ ├── rule.rb │ │ │ ├── special.rb │ │ │ ├── text_formatter_test_case.rb │ │ │ ├── to_ansi.rb │ │ │ ├── to_bs.rb │ │ │ ├── to_html.rb │ │ │ ├── to_html_crossref.rb │ │ │ ├── to_html_snippet.rb │ │ │ ├── to_joined_paragraph.rb │ │ │ ├── to_label.rb │ │ │ ├── to_markdown.rb │ │ │ ├── to_rdoc.rb │ │ │ ├── to_table_of_contents.rb │ │ │ ├── to_test.rb │ │ │ ├── to_tt_only.rb │ │ │ └── verbatim.rb │ │ ├── meta_method.rb │ │ ├── method_attr.rb │ │ ├── mixin.rb │ │ ├── normal_class.rb │ │ ├── normal_module.rb │ │ ├── options.rb │ │ ├── parser.rb │ │ ├── parser │ │ │ ├── c.rb │ │ │ ├── changelog.rb │ │ │ ├── markdown.rb │ │ │ ├── rd.rb │ │ │ ├── ruby.rb │ │ │ ├── ruby_tools.rb │ │ │ ├── simple.rb │ │ │ └── text.rb │ │ ├── rd.rb │ │ ├── rd │ │ │ ├── block_parser.rb │ │ │ ├── inline.rb │ │ │ └── inline_parser.rb │ │ ├── rdoc.gemspec │ │ ├── rdoc.rb │ │ ├── require.rb │ │ ├── ri.rb │ │ ├── ri │ │ │ ├── driver.rb │ │ │ ├── formatter.rb │ │ │ ├── paths.rb │ │ │ ├── store.rb │ │ │ └── task.rb │ │ ├── ruby_lex.rb │ │ ├── ruby_token.rb │ │ ├── rubygems_hook.rb │ │ ├── servlet.rb │ │ ├── single_class.rb │ │ ├── stats.rb │ │ ├── stats │ │ │ ├── normal.rb │ │ │ ├── quiet.rb │ │ │ └── verbose.rb │ │ ├── store.rb │ │ ├── task.rb │ │ ├── test_case.rb │ │ ├── text.rb │ │ ├── token_stream.rb │ │ ├── tom_doc.rb │ │ └── top_level.rb │ ├── resolv-replace.rb │ ├── resolv.rb │ ├── rexml │ │ ├── attlistdecl.rb │ │ ├── attribute.rb │ │ ├── cdata.rb │ │ ├── child.rb │ │ ├── comment.rb │ │ ├── doctype.rb │ │ ├── document.rb │ │ ├── dtd │ │ │ ├── attlistdecl.rb │ │ │ ├── dtd.rb │ │ │ ├── elementdecl.rb │ │ │ ├── entitydecl.rb │ │ │ └── notationdecl.rb │ │ ├── element.rb │ │ ├── encoding.rb │ │ ├── entity.rb │ │ ├── formatters │ │ │ ├── default.rb │ │ │ ├── pretty.rb │ │ │ └── transitive.rb │ │ ├── functions.rb │ │ ├── instruction.rb │ │ ├── light │ │ │ └── node.rb │ │ ├── namespace.rb │ │ ├── node.rb │ │ ├── output.rb │ │ ├── parent.rb │ │ ├── parseexception.rb │ │ ├── parsers │ │ │ ├── baseparser.rb │ │ │ ├── lightparser.rb │ │ │ ├── pullparser.rb │ │ │ ├── sax2parser.rb │ │ │ ├── streamparser.rb │ │ │ ├── treeparser.rb │ │ │ ├── ultralightparser.rb │ │ │ └── xpathparser.rb │ │ ├── quickpath.rb │ │ ├── rexml.rb │ │ ├── sax2listener.rb │ │ ├── security.rb │ │ ├── source.rb │ │ ├── streamlistener.rb │ │ ├── syncenumerator.rb │ │ ├── text.rb │ │ ├── undefinednamespaceexception.rb │ │ ├── validation │ │ │ ├── relaxng.rb │ │ │ ├── validation.rb │ │ │ └── validationexception.rb │ │ ├── xmldecl.rb │ │ ├── xmltokens.rb │ │ ├── xpath.rb │ │ └── xpath_parser.rb │ ├── rinda │ │ ├── rinda.rb │ │ ├── ring.rb │ │ └── tuplespace.rb │ ├── rss.rb │ ├── rss │ │ ├── 0.9.rb │ │ ├── 1.0.rb │ │ ├── 2.0.rb │ │ ├── atom.rb │ │ ├── content.rb │ │ ├── content │ │ │ ├── 1.0.rb │ │ │ └── 2.0.rb │ │ ├── converter.rb │ │ ├── dublincore.rb │ │ ├── dublincore │ │ │ ├── 1.0.rb │ │ │ ├── 2.0.rb │ │ │ └── atom.rb │ │ ├── image.rb │ │ ├── itunes.rb │ │ ├── maker.rb │ │ ├── maker │ │ │ ├── 0.9.rb │ │ │ ├── 1.0.rb │ │ │ ├── 2.0.rb │ │ │ ├── atom.rb │ │ │ ├── base.rb │ │ │ ├── content.rb │ │ │ ├── dublincore.rb │ │ │ ├── entry.rb │ │ │ ├── feed.rb │ │ │ ├── image.rb │ │ │ ├── itunes.rb │ │ │ ├── slash.rb │ │ │ ├── syndication.rb │ │ │ ├── taxonomy.rb │ │ │ └── trackback.rb │ │ ├── parser.rb │ │ ├── rexmlparser.rb │ │ ├── rss.rb │ │ ├── slash.rb │ │ ├── syndication.rb │ │ ├── taxonomy.rb │ │ ├── trackback.rb │ │ ├── utils.rb │ │ ├── xml-stylesheet.rb │ │ ├── xml.rb │ │ ├── xmlparser.rb │ │ └── xmlscanner.rb │ ├── rubygems.rb │ ├── rubygems │ │ ├── LICENSE.txt │ │ ├── available_set.rb │ │ ├── basic_specification.rb │ │ ├── command.rb │ │ ├── command_manager.rb │ │ ├── commands │ │ │ ├── build_command.rb │ │ │ ├── cert_command.rb │ │ │ ├── check_command.rb │ │ │ ├── cleanup_command.rb │ │ │ ├── contents_command.rb │ │ │ ├── dependency_command.rb │ │ │ ├── environment_command.rb │ │ │ ├── fetch_command.rb │ │ │ ├── generate_index_command.rb │ │ │ ├── help_command.rb │ │ │ ├── install_command.rb │ │ │ ├── list_command.rb │ │ │ ├── lock_command.rb │ │ │ ├── mirror_command.rb │ │ │ ├── open_command.rb │ │ │ ├── outdated_command.rb │ │ │ ├── owner_command.rb │ │ │ ├── pristine_command.rb │ │ │ ├── push_command.rb │ │ │ ├── query_command.rb │ │ │ ├── rdoc_command.rb │ │ │ ├── search_command.rb │ │ │ ├── server_command.rb │ │ │ ├── setup_command.rb │ │ │ ├── sources_command.rb │ │ │ ├── specification_command.rb │ │ │ ├── stale_command.rb │ │ │ ├── uninstall_command.rb │ │ │ ├── unpack_command.rb │ │ │ ├── update_command.rb │ │ │ ├── which_command.rb │ │ │ └── yank_command.rb │ │ ├── compatibility.rb │ │ ├── config_file.rb │ │ ├── core_ext │ │ │ ├── kernel_gem.rb │ │ │ └── kernel_require.rb │ │ ├── defaults.rb │ │ ├── dependency.rb │ │ ├── dependency_installer.rb │ │ ├── dependency_list.rb │ │ ├── deprecate.rb │ │ ├── doctor.rb │ │ ├── errors.rb │ │ ├── exceptions.rb │ │ ├── ext.rb │ │ ├── ext │ │ │ ├── build_error.rb │ │ │ ├── builder.rb │ │ │ ├── cmake_builder.rb │ │ │ ├── configure_builder.rb │ │ │ ├── ext_conf_builder.rb │ │ │ └── rake_builder.rb │ │ ├── gem_runner.rb │ │ ├── gemcutter_utilities.rb │ │ ├── indexer.rb │ │ ├── install_default_message.rb │ │ ├── install_message.rb │ │ ├── install_update_options.rb │ │ ├── installer.rb │ │ ├── installer_test_case.rb │ │ ├── local_remote_options.rb │ │ ├── mock_gem_ui.rb │ │ ├── name_tuple.rb │ │ ├── package.rb │ │ ├── package │ │ │ ├── digest_io.rb │ │ │ ├── file_source.rb │ │ │ ├── io_source.rb │ │ │ ├── old.rb │ │ │ ├── source.rb │ │ │ ├── tar_header.rb │ │ │ ├── tar_reader.rb │ │ │ ├── tar_reader │ │ │ │ └── entry.rb │ │ │ ├── tar_test_case.rb │ │ │ └── tar_writer.rb │ │ ├── package_task.rb │ │ ├── path_support.rb │ │ ├── platform.rb │ │ ├── psych_additions.rb │ │ ├── psych_tree.rb │ │ ├── rdoc.rb │ │ ├── remote_fetcher.rb │ │ ├── request.rb │ │ ├── request │ │ │ ├── connection_pools.rb │ │ │ ├── http_pool.rb │ │ │ └── https_pool.rb │ │ ├── request_set.rb │ │ ├── request_set │ │ │ ├── gem_dependency_api.rb │ │ │ ├── lockfile.rb │ │ │ └── lockfile │ │ │ │ ├── parser.rb │ │ │ │ └── tokenizer.rb │ │ ├── requirement.rb │ │ ├── resolver.rb │ │ ├── resolver │ │ │ ├── activation_request.rb │ │ │ ├── api_set.rb │ │ │ ├── api_specification.rb │ │ │ ├── best_set.rb │ │ │ ├── composed_set.rb │ │ │ ├── conflict.rb │ │ │ ├── current_set.rb │ │ │ ├── dependency_request.rb │ │ │ ├── git_set.rb │ │ │ ├── git_specification.rb │ │ │ ├── index_set.rb │ │ │ ├── index_specification.rb │ │ │ ├── installed_specification.rb │ │ │ ├── installer_set.rb │ │ │ ├── local_specification.rb │ │ │ ├── lock_set.rb │ │ │ ├── lock_specification.rb │ │ │ ├── molinillo.rb │ │ │ ├── molinillo │ │ │ │ └── lib │ │ │ │ │ ├── molinillo.rb │ │ │ │ │ └── molinillo │ │ │ │ │ ├── delegates │ │ │ │ │ ├── resolution_state.rb │ │ │ │ │ └── specification_provider.rb │ │ │ │ │ ├── dependency_graph.rb │ │ │ │ │ ├── dependency_graph │ │ │ │ │ ├── action.rb │ │ │ │ │ ├── add_edge_no_circular.rb │ │ │ │ │ ├── add_vertex.rb │ │ │ │ │ ├── delete_edge.rb │ │ │ │ │ ├── detach_vertex_named.rb │ │ │ │ │ ├── log.rb │ │ │ │ │ ├── set_payload.rb │ │ │ │ │ ├── tag.rb │ │ │ │ │ └── vertex.rb │ │ │ │ │ ├── errors.rb │ │ │ │ │ ├── gem_metadata.rb │ │ │ │ │ ├── modules │ │ │ │ │ ├── specification_provider.rb │ │ │ │ │ └── ui.rb │ │ │ │ │ ├── resolution.rb │ │ │ │ │ ├── resolver.rb │ │ │ │ │ └── state.rb │ │ │ ├── requirement_list.rb │ │ │ ├── set.rb │ │ │ ├── source_set.rb │ │ │ ├── spec_specification.rb │ │ │ ├── specification.rb │ │ │ ├── stats.rb │ │ │ ├── vendor_set.rb │ │ │ └── vendor_specification.rb │ │ ├── security.rb │ │ ├── security │ │ │ ├── policies.rb │ │ │ ├── policy.rb │ │ │ ├── signer.rb │ │ │ └── trust_dir.rb │ │ ├── server.rb │ │ ├── source.rb │ │ ├── source │ │ │ ├── git.rb │ │ │ ├── installed.rb │ │ │ ├── local.rb │ │ │ ├── lock.rb │ │ │ ├── specific_file.rb │ │ │ └── vendor.rb │ │ ├── source_list.rb │ │ ├── source_local.rb │ │ ├── source_specific_file.rb │ │ ├── spec_fetcher.rb │ │ ├── specification.rb │ │ ├── ssl_certs │ │ │ ├── .document │ │ │ ├── index.rubygems.org │ │ │ │ └── GlobalSignRootCA.pem │ │ │ ├── rubygems.global.ssl.fastly.net │ │ │ │ └── DigiCertHighAssuranceEVRootCA.pem │ │ │ └── rubygems.org │ │ │ │ └── AddTrustExternalCARoot.pem │ │ ├── stub_specification.rb │ │ ├── syck_hack.rb │ │ ├── test_case.rb │ │ ├── test_utilities.rb │ │ ├── text.rb │ │ ├── uninstaller.rb │ │ ├── uri_formatter.rb │ │ ├── user_interaction.rb │ │ ├── util.rb │ │ ├── util │ │ │ ├── licenses.rb │ │ │ └── list.rb │ │ ├── validator.rb │ │ ├── version.rb │ │ └── version_option.rb │ ├── scanf.rb │ ├── securerandom.rb │ ├── set.rb │ ├── shell.rb │ ├── shell │ │ ├── builtin-command.rb │ │ ├── command-processor.rb │ │ ├── error.rb │ │ ├── filter.rb │ │ ├── process-controller.rb │ │ ├── system-command.rb │ │ └── version.rb │ ├── shellwords.rb │ ├── singleton.rb │ ├── sync.rb │ ├── tempfile.rb │ ├── thwait.rb │ ├── time.rb │ ├── timeout.rb │ ├── tmpdir.rb │ ├── tracer.rb │ ├── tsort.rb │ ├── ubygems.rb │ ├── un.rb │ ├── unicode_normalize.rb │ ├── unicode_normalize │ │ ├── normalize.rb │ │ └── tables.rb │ ├── uri.rb │ ├── uri │ │ ├── common.rb │ │ ├── ftp.rb │ │ ├── generic.rb │ │ ├── http.rb │ │ ├── https.rb │ │ ├── ldap.rb │ │ ├── ldaps.rb │ │ ├── mailto.rb │ │ ├── rfc2396_parser.rb │ │ └── rfc3986_parser.rb │ ├── weakref.rb │ ├── webrick.rb │ ├── webrick │ │ ├── accesslog.rb │ │ ├── cgi.rb │ │ ├── compat.rb │ │ ├── config.rb │ │ ├── cookie.rb │ │ ├── htmlutils.rb │ │ ├── httpauth.rb │ │ ├── httpauth │ │ │ ├── authenticator.rb │ │ │ ├── basicauth.rb │ │ │ ├── digestauth.rb │ │ │ ├── htdigest.rb │ │ │ ├── htgroup.rb │ │ │ ├── htpasswd.rb │ │ │ └── userdb.rb │ │ ├── httpproxy.rb │ │ ├── httprequest.rb │ │ ├── httpresponse.rb │ │ ├── https.rb │ │ ├── httpserver.rb │ │ ├── httpservlet.rb │ │ ├── httpservlet │ │ │ ├── abstract.rb │ │ │ ├── cgi_runner.rb │ │ │ ├── cgihandler.rb │ │ │ ├── erbhandler.rb │ │ │ ├── filehandler.rb │ │ │ └── prochandler.rb │ │ ├── httpstatus.rb │ │ ├── httputils.rb │ │ ├── httpversion.rb │ │ ├── log.rb │ │ ├── server.rb │ │ ├── ssl.rb │ │ ├── utils.rb │ │ └── version.rb │ ├── yaml.rb │ └── yaml │ │ ├── dbm.rb │ │ └── store.rb ├── load.c ├── loadpath.c ├── localeinit.c ├── main.c ├── man │ ├── erb.1 │ ├── goruby.1 │ ├── irb.1 │ ├── ri.1 │ └── ruby.1 ├── marshal.c ├── math.c ├── method.h ├── miniinit.c ├── miniprelude.c ├── misc │ ├── README │ ├── inf-ruby.el │ ├── rb_optparse.bash │ ├── rb_optparse.zsh │ ├── rdoc-mode.el │ ├── ruby-additional.el │ ├── ruby-electric.el │ ├── ruby-mode.el │ ├── ruby-style.el │ ├── rubydb2x.el │ └── rubydb3x.el ├── missing │ ├── acosh.c │ ├── alloca.c │ ├── cbrt.c │ ├── close.c │ ├── crt_externs.h │ ├── crypt.c │ ├── crypt.h │ ├── des_tables.c │ ├── dup2.c │ ├── erf.c │ ├── explicit_bzero.c │ ├── ffs.c │ ├── file.h │ ├── fileblocks.c │ ├── finite.c │ ├── flock.c │ ├── hypot.c │ ├── isinf.c │ ├── isnan.c │ ├── langinfo.c │ ├── lgamma_r.c │ ├── memcmp.c │ ├── memmove.c │ ├── nextafter.c │ ├── setproctitle.c │ ├── signbit.c │ ├── strchr.c │ ├── strerror.c │ ├── strlcat.c │ ├── strlcpy.c │ ├── strstr.c │ ├── strtol.c │ ├── tgamma.c │ └── x86_64-chkstk.s ├── nacl │ ├── GNUmakefile.in │ ├── README.nacl │ ├── create_nmf.rb │ ├── dirent.h │ ├── example.html │ ├── nacl-config.rb │ ├── package.rb │ ├── pepper_main.c │ ├── resource.h │ ├── select.h │ ├── signal.h │ ├── stat.h │ ├── unistd.h │ └── utime.h ├── node.c ├── node.h ├── node_name.inc ├── numeric.c ├── object.c ├── opt_sc.inc ├── optinsn.inc ├── optunifs.inc ├── pack.c ├── parse.c ├── parse.h ├── parse.y ├── prelude.c ├── prelude.rb ├── probes.d ├── probes.dmyh ├── probes_helper.h ├── proc.c ├── process.c ├── random.c ├── range.c ├── rational.c ├── re.c ├── regcomp.c ├── regenc.c ├── regenc.h ├── regerror.c ├── regexec.c ├── regint.h ├── regparse.c ├── regparse.h ├── regsyntax.c ├── revision.h ├── ruby-runner.c ├── ruby.c ├── ruby_assert.h ├── ruby_atomic.h ├── rubystub.c ├── safe.c ├── sample │ ├── README │ ├── benchmark.rb │ ├── biorhythm.rb │ ├── cal.rb │ ├── cbreak.rb │ ├── cgi-session-pstore.rb │ ├── clnt.rb │ ├── coverage.rb │ ├── delegate.rb │ ├── dir.rb │ ├── drb │ │ ├── README.ja.rdoc │ │ ├── README.rdoc │ │ ├── acl.rb │ │ ├── darray.rb │ │ ├── darrayc.rb │ │ ├── dbiff.rb │ │ ├── dcdbiff.rb │ │ ├── dchatc.rb │ │ ├── dchats.rb │ │ ├── dhasen.rb │ │ ├── dhasenc.rb │ │ ├── dlogc.rb │ │ ├── dlogd.rb │ │ ├── dqin.rb │ │ ├── dqlib.rb │ │ ├── dqout.rb │ │ ├── dqueue.rb │ │ ├── drbc.rb │ │ ├── drbch.rb │ │ ├── drbm.rb │ │ ├── drbmc.rb │ │ ├── drbs-acl.rb │ │ ├── drbs.rb │ │ ├── drbssl_c.rb │ │ ├── drbssl_s.rb │ │ ├── extserv_test.rb │ │ ├── gw_ct.rb │ │ ├── gw_cu.rb │ │ ├── gw_s.rb │ │ ├── holderc.rb │ │ ├── holders.rb │ │ ├── http0.rb │ │ ├── http0serv.rb │ │ ├── name.rb │ │ ├── namec.rb │ │ ├── old_tuplespace.rb │ │ ├── rinda_ts.rb │ │ ├── rindac.rb │ │ ├── rindas.rb │ │ ├── ring_echo.rb │ │ ├── ring_inspect.rb │ │ ├── ring_place.rb │ │ ├── simpletuple.rb │ │ ├── speedc.rb │ │ └── speeds.rb │ ├── dualstack-fetch.rb │ ├── dualstack-httpd.rb │ ├── eval.rb │ ├── export.rb │ ├── exyacc.rb │ ├── fact.rb │ ├── fib.awk │ ├── fib.pl │ ├── fib.py │ ├── fib.rb │ ├── fib.scm │ ├── freq.rb │ ├── from.rb │ ├── fullpath.rb │ ├── iseq_loader.rb │ ├── less.rb │ ├── list.rb │ ├── list2.rb │ ├── list3.rb │ ├── logger │ │ ├── app.rb │ │ ├── log.rb │ │ └── shifting.rb │ ├── mine.rb │ ├── mkproto.rb │ ├── mpart.rb │ ├── net-imap.rb │ ├── observ.rb │ ├── occur.pl │ ├── occur.rb │ ├── occur2.rb │ ├── open3.rb │ ├── openssl │ │ ├── c_rehash.rb │ │ ├── cert2text.rb │ │ ├── certstore.rb │ │ ├── cipher.rb │ │ ├── crlstore.rb │ │ ├── echo_cli.rb │ │ ├── echo_svr.rb │ │ ├── gen_csr.rb │ │ ├── smime_read.rb │ │ ├── smime_write.rb │ │ └── wget.rb │ ├── optparse │ │ ├── opttest.rb │ │ └── subcommand.rb │ ├── philos.rb │ ├── pi.rb │ ├── pstore.rb │ ├── pty │ │ ├── expect_sample.rb │ │ ├── script.rb │ │ └── shl.rb │ ├── rcs.awk │ ├── rcs.dat │ ├── rcs.rb │ ├── rdoc │ │ └── markup │ │ │ ├── rdoc2latex.rb │ │ │ └── sample.rb │ ├── rinda-ring.rb │ ├── ripper │ │ ├── ruby2html.rb │ │ └── strip-comment.rb │ ├── rss │ │ ├── blend.rb │ │ ├── convert.rb │ │ ├── list_description.rb │ │ ├── re_read.rb │ │ └── rss_recent.rb │ ├── sieve.rb │ ├── simple-bench.rb │ ├── svr.rb │ ├── tempfile.rb │ ├── test.rb │ ├── testunit │ │ ├── adder.rb │ │ ├── subtracter.rb │ │ ├── tc_adder.rb │ │ ├── tc_subtracter.rb │ │ └── ts_examples.rb │ ├── time.rb │ ├── timeout.rb │ ├── trick2013 │ │ ├── README.md │ │ ├── kinaba │ │ │ ├── authors.markdown │ │ │ ├── entry.rb │ │ │ └── remarks.markdown │ │ ├── mame │ │ │ ├── authors.markdown │ │ │ ├── entry.rb │ │ │ ├── music-box.mp4 │ │ │ └── remarks.markdown │ │ ├── shinh │ │ │ ├── authors.markdown │ │ │ ├── entry.rb │ │ │ └── remarks.markdown │ │ └── yhara │ │ │ ├── authors.markdown │ │ │ ├── entry.rb │ │ │ ├── remarks.en.markdown │ │ │ └── remarks.markdown │ ├── trick2015 │ │ ├── README.md │ │ ├── eregon │ │ │ ├── authors.markdown │ │ │ ├── entry.rb │ │ │ └── remarks.markdown │ │ ├── kinaba │ │ │ ├── authors.markdown │ │ │ ├── entry.rb │ │ │ └── remarks.markdown │ │ ├── ksk_1 │ │ │ ├── authors.markdown │ │ │ ├── entry.rb │ │ │ └── remarks.markdown │ │ ├── ksk_2 │ │ │ ├── abnormal.cnf │ │ │ ├── authors.markdown │ │ │ ├── entry.rb │ │ │ ├── quinn.cnf │ │ │ ├── remarks.markdown │ │ │ ├── sample.cnf │ │ │ ├── uf20-01.cnf │ │ │ └── unsat.cnf │ │ └── monae │ │ │ ├── authors.markdown │ │ │ ├── entry.rb │ │ │ └── remarks.markdown │ ├── trojan.rb │ ├── tsvr.rb │ ├── uumerge.rb │ ├── weakref.rb │ └── webrick │ │ ├── demo-app.rb │ │ ├── demo-multipart.cgi │ │ ├── demo-servlet.rb │ │ ├── demo-urlencoded.cgi │ │ ├── hello.cgi │ │ ├── hello.rb │ │ ├── httpd.rb │ │ ├── httpproxy.rb │ │ └── httpsd.rb ├── signal.c ├── siphash.c ├── siphash.h ├── sparc.c ├── spec │ ├── README │ └── default.mspec ├── sprintf.c ├── squash_cache.c ├── squash_decompress.c ├── squash_dir.c ├── squash_dirent.c ├── squash_extract.c ├── squash_fd.c ├── squash_file.c ├── squash_fs.c ├── squash_hash.c ├── squash_mutex.c ├── squash_nonstd-makedev.c ├── squash_nonstd-stat.c ├── squash_private.c ├── squash_readlink.c ├── squash_scandir.c ├── squash_stack.c ├── squash_stat.c ├── squash_table.c ├── squash_traverse.c ├── squash_util.c ├── st.c ├── strftime.c ├── string.c ├── struct.c ├── symbol.c ├── symbol.h ├── template │ ├── Doxyfile.tmpl │ ├── GNUmakefile.in │ ├── encdb.h.tmpl │ ├── fake.rb.in │ ├── id.c.tmpl │ ├── id.h.tmpl │ ├── insns.inc.tmpl │ ├── insns_info.inc.tmpl │ ├── known_errors.inc.tmpl │ ├── minsns.inc.tmpl │ ├── opt_sc.inc.tmpl │ ├── optinsn.inc.tmpl │ ├── optunifs.inc.tmpl │ ├── prelude.c.tmpl │ ├── ruby-runner.h.in │ ├── ruby.pc.in │ ├── sizes.c.tmpl │ ├── transdb.h.tmpl │ ├── unicode_norm_gen.tmpl │ ├── verconf.h.tmpl │ ├── vm.inc.tmpl │ ├── vmtc.inc.tmpl │ ├── yarvarch.en │ ├── yarvarch.ja │ └── yasmdata.rb.tmpl ├── test │ ├── -ext- │ │ ├── array │ │ │ └── test_resize.rb │ │ ├── bignum │ │ │ ├── test_big2str.rb │ │ │ ├── test_bigzero.rb │ │ │ ├── test_div.rb │ │ │ ├── test_mul.rb │ │ │ ├── test_pack.rb │ │ │ └── test_str2big.rb │ │ ├── bug_reporter │ │ │ └── test_bug_reporter.rb │ │ ├── class │ │ │ └── test_class2name.rb │ │ ├── debug │ │ │ ├── test_debug.rb │ │ │ └── test_profile_frames.rb │ │ ├── exception │ │ │ ├── test_data_error.rb │ │ │ ├── test_enc_raise.rb │ │ │ ├── test_ensured.rb │ │ │ └── test_exception_at_throwing.rb │ │ ├── file │ │ │ └── test_stat.rb │ │ ├── float │ │ │ └── test_nextafter.rb │ │ ├── funcall │ │ │ └── test_passing_block.rb │ │ ├── gvl │ │ │ └── test_last_thread.rb │ │ ├── hash │ │ │ └── test_delete.rb │ │ ├── integer │ │ │ ├── test_integer.rb │ │ │ └── test_my_integer.rb │ │ ├── iseq_load │ │ │ └── test_iseq_load.rb │ │ ├── iter │ │ │ ├── test_iter_break.rb │ │ │ └── test_yield_block.rb │ │ ├── load │ │ │ └── test_dot_dot.rb │ │ ├── marshal │ │ │ ├── test_internal_ivar.rb │ │ │ └── test_usrmarshal.rb │ │ ├── method │ │ │ └── test_arity.rb │ │ ├── num2int │ │ │ └── test_num2int.rb │ │ ├── path_to_class │ │ │ └── test_path_to_class.rb │ │ ├── popen_deadlock │ │ │ └── test_popen_deadlock.rb │ │ ├── postponed_job │ │ │ └── test_postponed_job.rb │ │ ├── proc │ │ │ └── test_bmethod.rb │ │ ├── rational │ │ │ └── test_rat.rb │ │ ├── st │ │ │ ├── test_foreach.rb │ │ │ ├── test_numhash.rb │ │ │ └── test_update.rb │ │ ├── string │ │ │ ├── test_capacity.rb │ │ │ ├── test_coderange.rb │ │ │ ├── test_cstr.rb │ │ │ ├── test_ellipsize.rb │ │ │ ├── test_enc_associate.rb │ │ │ ├── test_enc_str_buf_cat.rb │ │ │ ├── test_fstring.rb │ │ │ ├── test_modify_expand.rb │ │ │ ├── test_nofree.rb │ │ │ ├── test_normalize.rb │ │ │ ├── test_qsort.rb │ │ │ └── test_set_len.rb │ │ ├── struct │ │ │ ├── test_duplicate.rb │ │ │ └── test_member.rb │ │ ├── symbol │ │ │ ├── noninterned_name.rb │ │ │ ├── test_inadvertent_creation.rb │ │ │ └── test_type.rb │ │ ├── test_bug-3571.rb │ │ ├── test_bug-5832.rb │ │ ├── test_notimplement.rb │ │ ├── test_printf.rb │ │ ├── test_recursion.rb │ │ ├── time │ │ │ └── test_new.rb │ │ ├── tracepoint │ │ │ └── test_tracepoint.rb │ │ ├── typeddata │ │ │ └── test_typeddata.rb │ │ ├── vm │ │ │ └── test_at_exit.rb │ │ ├── wait_for_single_fd │ │ │ └── test_wait_for_single_fd.rb │ │ └── win32 │ │ │ ├── test_console_attr.rb │ │ │ ├── test_dln.rb │ │ │ └── test_fd_setsize.rb │ ├── base64 │ │ └── test_base64.rb │ ├── benchmark │ │ └── test_benchmark.rb │ ├── bigdecimal │ │ ├── test_bigdecimal.rb │ │ ├── test_bigdecimal_util.rb │ │ ├── test_bigmath.rb │ │ └── testbase.rb │ ├── cgi │ │ ├── test_cgi_cookie.rb │ │ ├── test_cgi_core.rb │ │ ├── test_cgi_header.rb │ │ ├── test_cgi_modruby.rb │ │ ├── test_cgi_multipart.rb │ │ ├── test_cgi_session.rb │ │ ├── test_cgi_tag_helper.rb │ │ ├── test_cgi_util.rb │ │ ├── testdata │ │ │ ├── file1.html │ │ │ ├── large.png │ │ │ └── small.png │ │ └── update_env.rb │ ├── colors │ ├── coverage │ │ └── test_coverage.rb │ ├── csv │ │ ├── base.rb │ │ ├── line_endings.gz │ │ ├── test_csv_parsing.rb │ │ ├── test_csv_writing.rb │ │ ├── test_data_converters.rb │ │ ├── test_encodings.rb │ │ ├── test_features.rb │ │ ├── test_headers.rb │ │ ├── test_interface.rb │ │ ├── test_row.rb │ │ ├── test_table.rb │ │ └── ts_all.rb │ ├── date │ │ ├── test_date.rb │ │ ├── test_date_arith.rb │ │ ├── test_date_attr.rb │ │ ├── test_date_base.rb │ │ ├── test_date_compat.rb │ │ ├── test_date_conv.rb │ │ ├── test_date_marshal.rb │ │ ├── test_date_new.rb │ │ ├── test_date_parse.rb │ │ ├── test_date_strftime.rb │ │ ├── test_date_strptime.rb │ │ └── test_switch_hitter.rb │ ├── dbm │ │ └── test_dbm.rb │ ├── digest │ │ ├── digest │ │ │ └── foo.rb │ │ ├── test_digest.rb │ │ └── test_digest_extend.rb │ ├── drb │ │ ├── drbtest.rb │ │ ├── ignore_test_drb.rb │ │ ├── test_acl.rb │ │ ├── test_drb.rb │ │ ├── test_drbssl.rb │ │ ├── test_drbunix.rb │ │ ├── ut_array.rb │ │ ├── ut_array_drbssl.rb │ │ ├── ut_array_drbunix.rb │ │ ├── ut_drb.rb │ │ ├── ut_drb_drbssl.rb │ │ ├── ut_drb_drbunix.rb │ │ ├── ut_eq.rb │ │ ├── ut_eval.rb │ │ ├── ut_large.rb │ │ ├── ut_port.rb │ │ ├── ut_safe1.rb │ │ └── ut_timerholder.rb │ ├── dtrace │ │ ├── dummy.rb │ │ ├── helper.rb │ │ ├── test_array_create.rb │ │ ├── test_cmethod.rb │ │ ├── test_function_entry.rb │ │ ├── test_gc.rb │ │ ├── test_hash_create.rb │ │ ├── test_load.rb │ │ ├── test_method_cache.rb │ │ ├── test_object_create_start.rb │ │ ├── test_raise.rb │ │ ├── test_require.rb │ │ ├── test_singleton_function.rb │ │ └── test_string.rb │ ├── erb │ │ ├── hello.erb │ │ ├── test_erb.rb │ │ ├── test_erb_command.rb │ │ └── test_erb_m17n.rb │ ├── etc │ │ └── test_etc.rb │ ├── excludes │ │ ├── TestException.rb │ │ ├── TestIO_Console.rb │ │ ├── TestISeq.rb │ │ └── TestThread.rb │ ├── fiddle │ │ ├── helper.rb │ │ ├── test_c_struct_entry.rb │ │ ├── test_c_union_entity.rb │ │ ├── test_closure.rb │ │ ├── test_cparser.rb │ │ ├── test_fiddle.rb │ │ ├── test_func.rb │ │ ├── test_function.rb │ │ ├── test_handle.rb │ │ ├── test_import.rb │ │ └── test_pointer.rb │ ├── fileutils │ │ ├── clobber.rb │ │ ├── fileasserts.rb │ │ ├── test_dryrun.rb │ │ ├── test_fileutils.rb │ │ ├── test_nowrite.rb │ │ ├── test_verbose.rb │ │ └── visibility_tests.rb │ ├── gdbm │ │ └── test_gdbm.rb │ ├── io │ │ ├── console │ │ │ └── test_io_console.rb │ │ ├── nonblock │ │ │ └── test_flush.rb │ │ └── wait │ │ │ └── test_io_wait.rb │ ├── irb │ │ ├── test_completion.rb │ │ ├── test_option.rb │ │ └── test_raise_no_backtrace_exception.rb │ ├── json │ │ ├── fixtures │ │ │ ├── fail10.json │ │ │ ├── fail11.json │ │ │ ├── fail12.json │ │ │ ├── fail13.json │ │ │ ├── fail14.json │ │ │ ├── fail18.json │ │ │ ├── fail19.json │ │ │ ├── fail2.json │ │ │ ├── fail20.json │ │ │ ├── fail21.json │ │ │ ├── fail22.json │ │ │ ├── fail23.json │ │ │ ├── fail24.json │ │ │ ├── fail25.json │ │ │ ├── fail27.json │ │ │ ├── fail28.json │ │ │ ├── fail3.json │ │ │ ├── fail4.json │ │ │ ├── fail5.json │ │ │ ├── fail6.json │ │ │ ├── fail7.json │ │ │ ├── fail8.json │ │ │ ├── fail9.json │ │ │ ├── obsolete_fail1.json │ │ │ ├── pass1.json │ │ │ ├── pass15.json │ │ │ ├── pass16.json │ │ │ ├── pass17.json │ │ │ ├── pass2.json │ │ │ ├── pass26.json │ │ │ └── pass3.json │ │ ├── json_addition_test.rb │ │ ├── json_common_interface_test.rb │ │ ├── json_encoding_test.rb │ │ ├── json_ext_parser_test.rb │ │ ├── json_fixtures_test.rb │ │ ├── json_generator_test.rb │ │ ├── json_generic_object_test.rb │ │ ├── json_parser_test.rb │ │ ├── json_string_matching_test.rb │ │ └── test_helper.rb │ ├── lib │ │ ├── -test- │ │ │ └── integer.rb │ │ ├── envutil.rb │ │ ├── find_executable.rb │ │ ├── iseq_loader_checker.rb │ │ ├── leakchecker.rb │ │ ├── memory_status.rb │ │ ├── minitest │ │ │ ├── README.txt │ │ │ ├── autorun.rb │ │ │ ├── benchmark.rb │ │ │ ├── mock.rb │ │ │ └── unit.rb │ │ ├── profile_test_all.rb │ │ ├── test │ │ │ ├── unit.rb │ │ │ └── unit │ │ │ │ ├── assertions.rb │ │ │ │ ├── parallel.rb │ │ │ │ └── testcase.rb │ │ ├── tracepointchecker.rb │ │ ├── with_different_ofs.rb │ │ └── zombie_hunter.rb │ ├── logger │ │ ├── test_logdevice.rb │ │ ├── test_logger.rb │ │ └── test_severity.rb │ ├── matrix │ │ ├── test_matrix.rb │ │ └── test_vector.rb │ ├── minitest │ │ ├── metametameta.rb │ │ ├── test_minitest_benchmark.rb │ │ ├── test_minitest_mock.rb │ │ └── test_minitest_unit.rb │ ├── misc │ │ └── test_ruby_mode.rb │ ├── mkmf │ │ ├── base.rb │ │ ├── test_config.rb │ │ ├── test_constant.rb │ │ ├── test_convertible.rb │ │ ├── test_find_executable.rb │ │ ├── test_flags.rb │ │ ├── test_framework.rb │ │ ├── test_have_func.rb │ │ ├── test_have_library.rb │ │ ├── test_have_macro.rb │ │ ├── test_libs.rb │ │ ├── test_signedness.rb │ │ └── test_sizeof.rb │ ├── monitor │ │ └── test_monitor.rb │ ├── net │ │ ├── fixtures │ │ │ ├── cacert.pem │ │ │ ├── dhparams.pem │ │ │ ├── server.crt │ │ │ └── server.key │ │ ├── ftp │ │ │ ├── test_buffered_socket.rb │ │ │ ├── test_ftp.rb │ │ │ └── test_mlsx_entry.rb │ │ ├── http │ │ │ ├── test_buffered_io.rb │ │ │ ├── test_http.rb │ │ │ ├── test_http_request.rb │ │ │ ├── test_httpheader.rb │ │ │ ├── test_httpresponse.rb │ │ │ ├── test_httpresponses.rb │ │ │ ├── test_https.rb │ │ │ ├── test_https_proxy.rb │ │ │ └── utils.rb │ │ ├── imap │ │ │ ├── Makefile │ │ │ ├── test_imap.rb │ │ │ └── test_imap_response_parser.rb │ │ ├── pop │ │ │ └── test_pop.rb │ │ ├── protocol │ │ │ └── test_protocol.rb │ │ └── smtp │ │ │ ├── test_response.rb │ │ │ ├── test_smtp.rb │ │ │ └── test_ssl_socket.rb │ ├── nkf │ │ ├── test_kconv.rb │ │ └── test_nkf.rb │ ├── objspace │ │ └── test_objspace.rb │ ├── open-uri │ │ ├── test_open-uri.rb │ │ └── test_ssl.rb │ ├── openssl │ │ ├── test_asn1.rb │ │ ├── test_bn.rb │ │ ├── test_buffering.rb │ │ ├── test_cipher.rb │ │ ├── test_config.rb │ │ ├── test_digest.rb │ │ ├── test_engine.rb │ │ ├── test_fips.rb │ │ ├── test_hmac.rb │ │ ├── test_ns_spki.rb │ │ ├── test_ocsp.rb │ │ ├── test_pair.rb │ │ ├── test_pkcs12.rb │ │ ├── test_pkcs5.rb │ │ ├── test_pkcs7.rb │ │ ├── test_pkey_dh.rb │ │ ├── test_pkey_dsa.rb │ │ ├── test_pkey_ec.rb │ │ ├── test_pkey_rsa.rb │ │ ├── test_random.rb │ │ ├── test_ssl.rb │ │ ├── test_ssl_session.rb │ │ ├── test_x509attr.rb │ │ ├── test_x509cert.rb │ │ ├── test_x509crl.rb │ │ ├── test_x509ext.rb │ │ ├── test_x509name.rb │ │ ├── test_x509req.rb │ │ ├── test_x509store.rb │ │ ├── ut_eof.rb │ │ └── utils.rb │ ├── optparse │ │ ├── test_acceptable.rb │ │ ├── test_autoconf.rb │ │ ├── test_bash_completion.rb │ │ ├── test_cclass.rb │ │ ├── test_getopts.rb │ │ ├── test_kwargs.rb │ │ ├── test_noarg.rb │ │ ├── test_optarg.rb │ │ ├── test_optparse.rb │ │ ├── test_placearg.rb │ │ ├── test_reqarg.rb │ │ ├── test_summary.rb │ │ └── test_zsh_completion.rb │ ├── ostruct │ │ └── test_ostruct.rb │ ├── pathname │ │ └── test_pathname.rb │ ├── psych │ │ ├── handlers │ │ │ └── test_recorder.rb │ │ ├── helper.rb │ │ ├── json │ │ │ └── test_stream.rb │ │ ├── nodes │ │ │ └── test_enumerable.rb │ │ ├── test_alias_and_anchor.rb │ │ ├── test_array.rb │ │ ├── test_boolean.rb │ │ ├── test_class.rb │ │ ├── test_coder.rb │ │ ├── test_date_time.rb │ │ ├── test_deprecated.rb │ │ ├── test_document.rb │ │ ├── test_emitter.rb │ │ ├── test_encoding.rb │ │ ├── test_exception.rb │ │ ├── test_hash.rb │ │ ├── test_json_tree.rb │ │ ├── test_marshalable.rb │ │ ├── test_merge_keys.rb │ │ ├── test_nil.rb │ │ ├── test_null.rb │ │ ├── test_numeric.rb │ │ ├── test_object.rb │ │ ├── test_object_references.rb │ │ ├── test_omap.rb │ │ ├── test_parser.rb │ │ ├── test_psych.rb │ │ ├── test_safe_load.rb │ │ ├── test_scalar.rb │ │ ├── test_scalar_scanner.rb │ │ ├── test_serialize_subclasses.rb │ │ ├── test_set.rb │ │ ├── test_stream.rb │ │ ├── test_string.rb │ │ ├── test_struct.rb │ │ ├── test_symbol.rb │ │ ├── test_tainted.rb │ │ ├── test_to_yaml_properties.rb │ │ ├── test_tree_builder.rb │ │ ├── test_yaml.rb │ │ ├── test_yamldbm.rb │ │ ├── test_yamlstore.rb │ │ └── visitors │ │ │ ├── test_depth_first.rb │ │ │ ├── test_emitter.rb │ │ │ ├── test_to_ruby.rb │ │ │ └── test_yaml_tree.rb │ ├── rdoc │ │ ├── MarkdownTest_1.0.3 │ │ │ ├── Amps and angle encoding.text │ │ │ ├── Auto links.text │ │ │ ├── Backslash escapes.text │ │ │ ├── Blockquotes with code blocks.text │ │ │ ├── Code Blocks.text │ │ │ ├── Code Spans.text │ │ │ ├── Hard-wrapped paragraphs with list-like lines.text │ │ │ ├── Horizontal rules.text │ │ │ ├── Inline HTML (Advanced).text │ │ │ ├── Inline HTML (Simple).text │ │ │ ├── Inline HTML comments.text │ │ │ ├── Links, inline style.text │ │ │ ├── Links, reference style.text │ │ │ ├── Links, shortcut references.text │ │ │ ├── Literal quotes in titles.text │ │ │ ├── Markdown Documentation - Basics.text │ │ │ ├── Markdown Documentation - Syntax.text │ │ │ ├── Nested blockquotes.text │ │ │ ├── Ordered and unordered lists.text │ │ │ ├── Strong and em together.text │ │ │ ├── Tabs.text │ │ │ └── Tidyness.text │ │ ├── README │ │ ├── binary.dat │ │ ├── hidden.zip.txt │ │ ├── test.ja.largedoc │ │ ├── test.ja.rdoc │ │ ├── test.ja.txt │ │ ├── test.txt │ │ ├── test_rdoc_alias.rb │ │ ├── test_rdoc_any_method.rb │ │ ├── test_rdoc_attr.rb │ │ ├── test_rdoc_class_module.rb │ │ ├── test_rdoc_code_object.rb │ │ ├── test_rdoc_comment.rb │ │ ├── test_rdoc_constant.rb │ │ ├── test_rdoc_context.rb │ │ ├── test_rdoc_context_section.rb │ │ ├── test_rdoc_cross_reference.rb │ │ ├── test_rdoc_encoding.rb │ │ ├── test_rdoc_extend.rb │ │ ├── test_rdoc_generator_darkfish.rb │ │ ├── test_rdoc_generator_json_index.rb │ │ ├── test_rdoc_generator_markup.rb │ │ ├── test_rdoc_generator_pot.rb │ │ ├── test_rdoc_generator_pot_po.rb │ │ ├── test_rdoc_generator_pot_po_entry.rb │ │ ├── test_rdoc_generator_ri.rb │ │ ├── test_rdoc_i18n_locale.rb │ │ ├── test_rdoc_i18n_text.rb │ │ ├── test_rdoc_include.rb │ │ ├── test_rdoc_markdown.rb │ │ ├── test_rdoc_markdown_test.rb │ │ ├── test_rdoc_markup.rb │ │ ├── test_rdoc_markup_attribute_manager.rb │ │ ├── test_rdoc_markup_attributes.rb │ │ ├── test_rdoc_markup_document.rb │ │ ├── test_rdoc_markup_formatter.rb │ │ ├── test_rdoc_markup_hard_break.rb │ │ ├── test_rdoc_markup_heading.rb │ │ ├── test_rdoc_markup_include.rb │ │ ├── test_rdoc_markup_indented_paragraph.rb │ │ ├── test_rdoc_markup_paragraph.rb │ │ ├── test_rdoc_markup_parser.rb │ │ ├── test_rdoc_markup_pre_process.rb │ │ ├── test_rdoc_markup_raw.rb │ │ ├── test_rdoc_markup_to_ansi.rb │ │ ├── test_rdoc_markup_to_bs.rb │ │ ├── test_rdoc_markup_to_html.rb │ │ ├── test_rdoc_markup_to_html_crossref.rb │ │ ├── test_rdoc_markup_to_html_snippet.rb │ │ ├── test_rdoc_markup_to_joined_paragraph.rb │ │ ├── test_rdoc_markup_to_label.rb │ │ ├── test_rdoc_markup_to_markdown.rb │ │ ├── test_rdoc_markup_to_rdoc.rb │ │ ├── test_rdoc_markup_to_table_of_contents.rb │ │ ├── test_rdoc_markup_to_tt_only.rb │ │ ├── test_rdoc_markup_verbatim.rb │ │ ├── test_rdoc_method_attr.rb │ │ ├── test_rdoc_normal_class.rb │ │ ├── test_rdoc_normal_module.rb │ │ ├── test_rdoc_options.rb │ │ ├── test_rdoc_parser.rb │ │ ├── test_rdoc_parser_c.rb │ │ ├── test_rdoc_parser_changelog.rb │ │ ├── test_rdoc_parser_markdown.rb │ │ ├── test_rdoc_parser_rd.rb │ │ ├── test_rdoc_parser_ruby.rb │ │ ├── test_rdoc_parser_simple.rb │ │ ├── test_rdoc_rd.rb │ │ ├── test_rdoc_rd_block_parser.rb │ │ ├── test_rdoc_rd_inline.rb │ │ ├── test_rdoc_rd_inline_parser.rb │ │ ├── test_rdoc_rdoc.rb │ │ ├── test_rdoc_require.rb │ │ ├── test_rdoc_ri_driver.rb │ │ ├── test_rdoc_ri_paths.rb │ │ ├── test_rdoc_ruby_lex.rb │ │ ├── test_rdoc_ruby_token.rb │ │ ├── test_rdoc_rubygems_hook.rb │ │ ├── test_rdoc_servlet.rb │ │ ├── test_rdoc_single_class.rb │ │ ├── test_rdoc_stats.rb │ │ ├── test_rdoc_store.rb │ │ ├── test_rdoc_task.rb │ │ ├── test_rdoc_text.rb │ │ ├── test_rdoc_token_stream.rb │ │ ├── test_rdoc_tom_doc.rb │ │ ├── test_rdoc_top_level.rb │ │ ├── xref_data.rb │ │ └── xref_test_case.rb │ ├── readline │ │ ├── test_readline.rb │ │ └── test_readline_history.rb │ ├── resolv │ │ ├── test_addr.rb │ │ ├── test_dns.rb │ │ └── test_resource.rb │ ├── rexml │ │ ├── data │ │ │ ├── LostineRiver.kml.gz │ │ │ ├── ProductionSupport.xml │ │ │ ├── axis.xml │ │ │ ├── bad.xml │ │ │ ├── basic.xml │ │ │ ├── basicupdate.xml │ │ │ ├── broken.rss │ │ │ ├── contents.xml │ │ │ ├── dash.xml │ │ │ ├── defaultNamespace.xml │ │ │ ├── doctype_test.xml │ │ │ ├── documentation.xml │ │ │ ├── euc.xml │ │ │ ├── evaluate.xml │ │ │ ├── fibo.xml │ │ │ ├── foo.xml │ │ │ ├── google.2.xml │ │ │ ├── id.xml │ │ │ ├── iso8859-1.xml │ │ │ ├── jaxen24.xml │ │ │ ├── jaxen3.xml │ │ │ ├── lang.xml │ │ │ ├── lang0.xml │ │ │ ├── message.xml │ │ │ ├── moreover.xml │ │ │ ├── much_ado.xml │ │ │ ├── namespaces.xml │ │ │ ├── nitf.xml │ │ │ ├── numbers.xml │ │ │ ├── ofbiz-issues-full-177.xml │ │ │ ├── pi.xml │ │ │ ├── pi2.xml │ │ │ ├── project.xml │ │ │ ├── simple.xml │ │ │ ├── stream_accents.xml │ │ │ ├── t63-1.xml │ │ │ ├── t63-2.svg │ │ │ ├── t75.xml │ │ │ ├── test │ │ │ │ ├── tests.xml │ │ │ │ └── tests.xsl │ │ │ ├── testNamespaces.xml │ │ │ ├── testsrc.xml │ │ │ ├── text.xml │ │ │ ├── ticket_61.xml │ │ │ ├── ticket_68.xml │ │ │ ├── tutorial.xml │ │ │ ├── underscore.xml │ │ │ ├── utf16.xml │ │ │ ├── web.xml │ │ │ ├── web2.xml │ │ │ ├── working.rss │ │ │ ├── xmlfile-bug.xml │ │ │ ├── xp.tst │ │ │ └── yahoo.xml │ │ ├── listener.rb │ │ ├── parse │ │ │ ├── test_document_type_declaration.rb │ │ │ └── test_notation_declaration.rb │ │ ├── parser │ │ │ ├── test_sax2.rb │ │ │ ├── test_tree.rb │ │ │ └── test_ultra_light.rb │ │ ├── rexml_test_utils.rb │ │ ├── test_attributes.rb │ │ ├── test_attributes_mixin.rb │ │ ├── test_changing_encoding.rb │ │ ├── test_comment.rb │ │ ├── test_contrib.rb │ │ ├── test_core.rb │ │ ├── test_doctype.rb │ │ ├── test_document.rb │ │ ├── test_element.rb │ │ ├── test_elements.rb │ │ ├── test_encoding.rb │ │ ├── test_entity.rb │ │ ├── test_functions.rb │ │ ├── test_functions_number.rb │ │ ├── test_jaxen.rb │ │ ├── test_light.rb │ │ ├── test_lightparser.rb │ │ ├── test_listener.rb │ │ ├── test_martin_fowler.rb │ │ ├── test_namespace.rb │ │ ├── test_order.rb │ │ ├── test_preceding_sibling.rb │ │ ├── test_pullparser.rb │ │ ├── test_rexml_issuezilla.rb │ │ ├── test_sax.rb │ │ ├── test_stream.rb │ │ ├── test_text.rb │ │ ├── test_ticket_80.rb │ │ ├── test_validation_rng.rb │ │ ├── test_xml_declaration.rb │ │ └── xpath │ │ │ ├── test_attribute.rb │ │ │ ├── test_axis_preceding_sibling.rb │ │ │ ├── test_base.rb │ │ │ ├── test_node.rb │ │ │ ├── test_predicate.rb │ │ │ └── test_text.rb │ ├── rinda │ │ ├── test_rinda.rb │ │ └── test_tuplebag.rb │ ├── ripper │ │ ├── dummyparser.rb │ │ ├── test_files.rb │ │ ├── test_filter.rb │ │ ├── test_parser_events.rb │ │ ├── test_ripper.rb │ │ ├── test_scanner_events.rb │ │ └── test_sexp.rb │ ├── rss │ │ ├── dot.png │ │ ├── rss-assertions.rb │ │ ├── rss-testcase.rb │ │ ├── test_1.0.rb │ │ ├── test_2.0.rb │ │ ├── test_accessor.rb │ │ ├── test_atom.rb │ │ ├── test_content.rb │ │ ├── test_dublincore.rb │ │ ├── test_image.rb │ │ ├── test_inherit.rb │ │ ├── test_itunes.rb │ │ ├── test_maker_0.9.rb │ │ ├── test_maker_1.0.rb │ │ ├── test_maker_2.0.rb │ │ ├── test_maker_atom_entry.rb │ │ ├── test_maker_atom_feed.rb │ │ ├── test_maker_content.rb │ │ ├── test_maker_dc.rb │ │ ├── test_maker_image.rb │ │ ├── test_maker_itunes.rb │ │ ├── test_maker_slash.rb │ │ ├── test_maker_sy.rb │ │ ├── test_maker_taxo.rb │ │ ├── test_maker_trackback.rb │ │ ├── test_maker_xml-stylesheet.rb │ │ ├── test_parser.rb │ │ ├── test_parser_1.0.rb │ │ ├── test_parser_2.0.rb │ │ ├── test_parser_atom_entry.rb │ │ ├── test_parser_atom_feed.rb │ │ ├── test_setup_maker_0.9.rb │ │ ├── test_setup_maker_1.0.rb │ │ ├── test_setup_maker_2.0.rb │ │ ├── test_setup_maker_atom_entry.rb │ │ ├── test_setup_maker_atom_feed.rb │ │ ├── test_setup_maker_itunes.rb │ │ ├── test_setup_maker_slash.rb │ │ ├── test_slash.rb │ │ ├── test_syndication.rb │ │ ├── test_taxonomy.rb │ │ ├── test_to_s.rb │ │ ├── test_trackback.rb │ │ ├── test_version.rb │ │ └── test_xml-stylesheet.rb │ ├── ruby │ │ ├── allpairs.rb │ │ ├── beginmainend.rb │ │ ├── bug-11928.rb │ │ ├── enc │ │ │ ├── test_big5.rb │ │ │ ├── test_case_comprehensive.rb │ │ │ ├── test_case_mapping.rb │ │ │ ├── test_case_options.rb │ │ │ ├── test_cp949.rb │ │ │ ├── test_emoji.rb │ │ │ ├── test_euc_jp.rb │ │ │ ├── test_euc_kr.rb │ │ │ ├── test_euc_tw.rb │ │ │ ├── test_gb18030.rb │ │ │ ├── test_gbk.rb │ │ │ ├── test_iso_8859.rb │ │ │ ├── test_koi8.rb │ │ │ ├── test_regex_casefold.rb │ │ │ ├── test_shift_jis.rb │ │ │ ├── test_utf16.rb │ │ │ ├── test_utf32.rb │ │ │ ├── test_windows_1251.rb │ │ │ └── test_windows_1252.rb │ │ ├── lbtest.rb │ │ ├── marshaltestlib.rb │ │ ├── sentence.rb │ │ ├── test_alias.rb │ │ ├── test_argf.rb │ │ ├── test_arity.rb │ │ ├── test_array.rb │ │ ├── test_assignment.rb │ │ ├── test_autoload.rb │ │ ├── test_backtrace.rb │ │ ├── test_basicinstructions.rb │ │ ├── test_beginendblock.rb │ │ ├── test_bignum.rb │ │ ├── test_call.rb │ │ ├── test_case.rb │ │ ├── test_class.rb │ │ ├── test_clone.rb │ │ ├── test_comparable.rb │ │ ├── test_complex.rb │ │ ├── test_complex2.rb │ │ ├── test_complexrational.rb │ │ ├── test_condition.rb │ │ ├── test_const.rb │ │ ├── test_continuation.rb │ │ ├── test_defined.rb │ │ ├── test_dir.rb │ │ ├── test_dir_m17n.rb │ │ ├── test_econv.rb │ │ ├── test_encoding.rb │ │ ├── test_enum.rb │ │ ├── test_enumerator.rb │ │ ├── test_env.rb │ │ ├── test_eval.rb │ │ ├── test_exception.rb │ │ ├── test_extlibs.rb │ │ ├── test_fiber.rb │ │ ├── test_file.rb │ │ ├── test_file_exhaustive.rb │ │ ├── test_fixnum.rb │ │ ├── test_flip.rb │ │ ├── test_float.rb │ │ ├── test_fnmatch.rb │ │ ├── test_gc.rb │ │ ├── test_hash.rb │ │ ├── test_ifunless.rb │ │ ├── test_integer.rb │ │ ├── test_integer_comb.rb │ │ ├── test_io.rb │ │ ├── test_io_m17n.rb │ │ ├── test_iseq.rb │ │ ├── test_iterator.rb │ │ ├── test_keyword.rb │ │ ├── test_lambda.rb │ │ ├── test_lazy_enumerator.rb │ │ ├── test_literal.rb │ │ ├── test_m17n.rb │ │ ├── test_m17n_comb.rb │ │ ├── test_marshal.rb │ │ ├── test_math.rb │ │ ├── test_metaclass.rb │ │ ├── test_method.rb │ │ ├── test_mixed_unicode_escapes.rb │ │ ├── test_module.rb │ │ ├── test_not.rb │ │ ├── test_notimp.rb │ │ ├── test_numeric.rb │ │ ├── test_object.rb │ │ ├── test_objectspace.rb │ │ ├── test_optimization.rb │ │ ├── test_pack.rb │ │ ├── test_parse.rb │ │ ├── test_path.rb │ │ ├── test_pipe.rb │ │ ├── test_primitive.rb │ │ ├── test_proc.rb │ │ ├── test_process.rb │ │ ├── test_rand.rb │ │ ├── test_range.rb │ │ ├── test_rational.rb │ │ ├── test_rational2.rb │ │ ├── test_readpartial.rb │ │ ├── test_refinement.rb │ │ ├── test_regexp.rb │ │ ├── test_require.rb │ │ ├── test_rubyoptions.rb │ │ ├── test_rubyvm.rb │ │ ├── test_settracefunc.rb │ │ ├── test_signal.rb │ │ ├── test_sleep.rb │ │ ├── test_sprintf.rb │ │ ├── test_sprintf_comb.rb │ │ ├── test_string.rb │ │ ├── test_stringchar.rb │ │ ├── test_struct.rb │ │ ├── test_super.rb │ │ ├── test_symbol.rb │ │ ├── test_syntax.rb │ │ ├── test_system.rb │ │ ├── test_thread.rb │ │ ├── test_threadgroup.rb │ │ ├── test_time.rb │ │ ├── test_time_tz.rb │ │ ├── test_trace.rb │ │ ├── test_transcode.rb │ │ ├── test_undef.rb │ │ ├── test_unicode_escape.rb │ │ ├── test_variable.rb │ │ ├── test_weakmap.rb │ │ ├── test_whileuntil.rb │ │ ├── test_yield.rb │ │ └── ut_eof.rb │ ├── rubygems │ │ ├── alternate_cert.pem │ │ ├── alternate_cert_32.pem │ │ ├── alternate_key.pem │ │ ├── bad_rake.rb │ │ ├── bogussources.rb │ │ ├── ca_cert.pem │ │ ├── child_cert.pem │ │ ├── child_cert_32.pem │ │ ├── child_key.pem │ │ ├── client.pem │ │ ├── data │ │ │ ├── gem-private_key.pem │ │ │ ├── gem-public_cert.pem │ │ │ └── null-type.gemspec.rz │ │ ├── encrypted_private_key.pem │ │ ├── expired_cert.pem │ │ ├── fake_certlib │ │ │ └── openssl.rb │ │ ├── fix_openssl_warnings.rb │ │ ├── foo │ │ │ └── discover.rb │ │ ├── future_cert.pem │ │ ├── future_cert_32.pem │ │ ├── good_rake.rb │ │ ├── grandchild_cert.pem │ │ ├── grandchild_cert_32.pem │ │ ├── grandchild_key.pem │ │ ├── invalid_client.pem │ │ ├── invalid_issuer_cert.pem │ │ ├── invalid_issuer_cert_32.pem │ │ ├── invalid_key.pem │ │ ├── invalid_signer_cert.pem │ │ ├── invalid_signer_cert_32.pem │ │ ├── invalidchild_cert.pem │ │ ├── invalidchild_cert_32.pem │ │ ├── invalidchild_key.pem │ │ ├── plugin │ │ │ ├── exception │ │ │ │ └── rubygems_plugin.rb │ │ │ ├── load │ │ │ │ └── rubygems_plugin.rb │ │ │ └── standarderror │ │ │ │ └── rubygems_plugin.rb │ │ ├── private_key.pem │ │ ├── public_cert.pem │ │ ├── public_cert_32.pem │ │ ├── public_key.pem │ │ ├── rubygems │ │ │ └── commands │ │ │ │ └── crash_command.rb │ │ ├── rubygems_plugin.rb │ │ ├── sff │ │ │ └── discover.rb │ │ ├── simple_gem.rb │ │ ├── specifications │ │ │ ├── bar-0.0.2.gemspec │ │ │ └── foo-0.0.1-x86-mswin32.gemspec │ │ ├── ssl_cert.pem │ │ ├── ssl_key.pem │ │ ├── test_bundled_ca.rb │ │ ├── test_config.rb │ │ ├── test_deprecate.rb │ │ ├── test_gem.rb │ │ ├── test_gem_available_set.rb │ │ ├── test_gem_command.rb │ │ ├── test_gem_command_manager.rb │ │ ├── test_gem_commands_build_command.rb │ │ ├── test_gem_commands_cert_command.rb │ │ ├── test_gem_commands_check_command.rb │ │ ├── test_gem_commands_cleanup_command.rb │ │ ├── test_gem_commands_contents_command.rb │ │ ├── test_gem_commands_dependency_command.rb │ │ ├── test_gem_commands_environment_command.rb │ │ ├── test_gem_commands_fetch_command.rb │ │ ├── test_gem_commands_generate_index_command.rb │ │ ├── test_gem_commands_help_command.rb │ │ ├── test_gem_commands_install_command.rb │ │ ├── test_gem_commands_list_command.rb │ │ ├── test_gem_commands_lock_command.rb │ │ ├── test_gem_commands_mirror.rb │ │ ├── test_gem_commands_open_command.rb │ │ ├── test_gem_commands_outdated_command.rb │ │ ├── test_gem_commands_owner_command.rb │ │ ├── test_gem_commands_pristine_command.rb │ │ ├── test_gem_commands_push_command.rb │ │ ├── test_gem_commands_query_command.rb │ │ ├── test_gem_commands_search_command.rb │ │ ├── test_gem_commands_server_command.rb │ │ ├── test_gem_commands_setup_command.rb │ │ ├── test_gem_commands_sources_command.rb │ │ ├── test_gem_commands_specification_command.rb │ │ ├── test_gem_commands_stale_command.rb │ │ ├── test_gem_commands_uninstall_command.rb │ │ ├── test_gem_commands_unpack_command.rb │ │ ├── test_gem_commands_update_command.rb │ │ ├── test_gem_commands_which_command.rb │ │ ├── test_gem_commands_yank_command.rb │ │ ├── test_gem_config_file.rb │ │ ├── test_gem_dependency.rb │ │ ├── test_gem_dependency_installer.rb │ │ ├── test_gem_dependency_list.rb │ │ ├── test_gem_dependency_resolution_error.rb │ │ ├── test_gem_doctor.rb │ │ ├── test_gem_ext_builder.rb │ │ ├── test_gem_ext_cmake_builder.rb │ │ ├── test_gem_ext_configure_builder.rb │ │ ├── test_gem_ext_ext_conf_builder.rb │ │ ├── test_gem_ext_rake_builder.rb │ │ ├── test_gem_gem_runner.rb │ │ ├── test_gem_gemcutter_utilities.rb │ │ ├── test_gem_impossible_dependencies_error.rb │ │ ├── test_gem_indexer.rb │ │ ├── test_gem_install_update_options.rb │ │ ├── test_gem_installer.rb │ │ ├── test_gem_local_remote_options.rb │ │ ├── test_gem_name_tuple.rb │ │ ├── test_gem_package.rb │ │ ├── test_gem_package_old.rb │ │ ├── test_gem_package_tar_header.rb │ │ ├── test_gem_package_tar_reader.rb │ │ ├── test_gem_package_tar_reader_entry.rb │ │ ├── test_gem_package_tar_writer.rb │ │ ├── test_gem_package_task.rb │ │ ├── test_gem_path_support.rb │ │ ├── test_gem_platform.rb │ │ ├── test_gem_rdoc.rb │ │ ├── test_gem_remote_fetcher.rb │ │ ├── test_gem_request.rb │ │ ├── test_gem_request_connection_pools.rb │ │ ├── test_gem_request_set.rb │ │ ├── test_gem_request_set_gem_dependency_api.rb │ │ ├── test_gem_request_set_lockfile.rb │ │ ├── test_gem_request_set_lockfile_parser.rb │ │ ├── test_gem_request_set_lockfile_tokenizer.rb │ │ ├── test_gem_requirement.rb │ │ ├── test_gem_resolver.rb │ │ ├── test_gem_resolver_activation_request.rb │ │ ├── test_gem_resolver_api_set.rb │ │ ├── test_gem_resolver_api_specification.rb │ │ ├── test_gem_resolver_best_set.rb │ │ ├── test_gem_resolver_composed_set.rb │ │ ├── test_gem_resolver_conflict.rb │ │ ├── test_gem_resolver_dependency_request.rb │ │ ├── test_gem_resolver_git_set.rb │ │ ├── test_gem_resolver_git_specification.rb │ │ ├── test_gem_resolver_index_set.rb │ │ ├── test_gem_resolver_index_specification.rb │ │ ├── test_gem_resolver_installed_specification.rb │ │ ├── test_gem_resolver_installer_set.rb │ │ ├── test_gem_resolver_local_specification.rb │ │ ├── test_gem_resolver_lock_set.rb │ │ ├── test_gem_resolver_lock_specification.rb │ │ ├── test_gem_resolver_requirement_list.rb │ │ ├── test_gem_resolver_specification.rb │ │ ├── test_gem_resolver_vendor_set.rb │ │ ├── test_gem_resolver_vendor_specification.rb │ │ ├── test_gem_security.rb │ │ ├── test_gem_security_policy.rb │ │ ├── test_gem_security_signer.rb │ │ ├── test_gem_security_trust_dir.rb │ │ ├── test_gem_server.rb │ │ ├── test_gem_silent_ui.rb │ │ ├── test_gem_source.rb │ │ ├── test_gem_source_fetch_problem.rb │ │ ├── test_gem_source_git.rb │ │ ├── test_gem_source_installed.rb │ │ ├── test_gem_source_list.rb │ │ ├── test_gem_source_local.rb │ │ ├── test_gem_source_lock.rb │ │ ├── test_gem_source_specific_file.rb │ │ ├── test_gem_source_vendor.rb │ │ ├── test_gem_spec_fetcher.rb │ │ ├── test_gem_specification.rb │ │ ├── test_gem_stream_ui.rb │ │ ├── test_gem_stub_specification.rb │ │ ├── test_gem_text.rb │ │ ├── test_gem_uninstaller.rb │ │ ├── test_gem_unsatisfiable_dependency_error.rb │ │ ├── test_gem_uri_formatter.rb │ │ ├── test_gem_util.rb │ │ ├── test_gem_validator.rb │ │ ├── test_gem_version.rb │ │ ├── test_gem_version_option.rb │ │ ├── test_kernel.rb │ │ ├── test_remote_fetch_error.rb │ │ ├── test_require.rb │ │ ├── wrong_key_cert.pem │ │ └── wrong_key_cert_32.pem │ ├── runner.rb │ ├── scanf │ │ ├── data.txt │ │ ├── test_scanf.rb │ │ ├── test_scanfblocks.rb │ │ └── test_scanfio.rb │ ├── sdbm │ │ └── test_sdbm.rb │ ├── shell │ │ └── test_command_processor.rb │ ├── socket │ │ ├── test_addrinfo.rb │ │ ├── test_ancdata.rb │ │ ├── test_basicsocket.rb │ │ ├── test_nonblock.rb │ │ ├── test_socket.rb │ │ ├── test_sockopt.rb │ │ ├── test_tcp.rb │ │ ├── test_udp.rb │ │ └── test_unix.rb │ ├── stringio │ │ └── test_stringio.rb │ ├── strscan │ │ └── test_stringscanner.rb │ ├── syslog │ │ └── test_syslog_logger.rb │ ├── test_abbrev.rb │ ├── test_cmath.rb │ ├── test_delegate.rb │ ├── test_find.rb │ ├── test_forwardable.rb │ ├── test_ipaddr.rb │ ├── test_mathn.rb │ ├── test_mutex_m.rb │ ├── test_observer.rb │ ├── test_open3.rb │ ├── test_pp.rb │ ├── test_prettyprint.rb │ ├── test_prime.rb │ ├── test_pstore.rb │ ├── test_pty.rb │ ├── test_rbconfig.rb │ ├── test_securerandom.rb │ ├── test_set.rb │ ├── test_shellwords.rb │ ├── test_singleton.rb │ ├── test_syslog.rb │ ├── test_tempfile.rb │ ├── test_time.rb │ ├── test_timeout.rb │ ├── test_tmpdir.rb │ ├── test_tracer.rb │ ├── test_tsort.rb │ ├── test_unicode_normalize.rb │ ├── test_weakref.rb │ ├── test_win32api.rb │ ├── testunit │ │ ├── test4test_hideskip.rb │ │ ├── test4test_redefinition.rb │ │ ├── test4test_sorting.rb │ │ ├── test_assertion.rb │ │ ├── test_hideskip.rb │ │ ├── test_parallel.rb │ │ ├── test_redefinition.rb │ │ ├── test_sorting.rb │ │ └── tests_for_parallel │ │ │ ├── ptest_first.rb │ │ │ ├── ptest_forth.rb │ │ │ ├── ptest_second.rb │ │ │ ├── ptest_third.rb │ │ │ └── runner.rb │ ├── thread │ │ ├── test_cv.rb │ │ ├── test_queue.rb │ │ └── test_sync.rb │ ├── uri │ │ ├── test_common.rb │ │ ├── test_ftp.rb │ │ ├── test_generic.rb │ │ ├── test_http.rb │ │ ├── test_ldap.rb │ │ ├── test_mailto.rb │ │ └── test_parser.rb │ ├── webrick │ │ ├── .htaccess │ │ ├── test_cgi.rb │ │ ├── test_config.rb │ │ ├── test_cookie.rb │ │ ├── test_do_not_reverse_lookup.rb │ │ ├── test_filehandler.rb │ │ ├── test_htmlutils.rb │ │ ├── test_httpauth.rb │ │ ├── test_httpproxy.rb │ │ ├── test_httprequest.rb │ │ ├── test_httpresponse.rb │ │ ├── test_httpserver.rb │ │ ├── test_httputils.rb │ │ ├── test_httpversion.rb │ │ ├── test_server.rb │ │ ├── test_ssl_server.rb │ │ ├── test_utils.rb │ │ ├── utils.rb │ │ ├── webrick.cgi │ │ └── webrick_long_filename.cgi │ ├── win32ole │ │ ├── err_in_callback.rb │ │ ├── orig_data.csv │ │ ├── test_err_in_callback.rb │ │ ├── test_folderitem2_invokeverb.rb │ │ ├── test_nil2vtempty.rb │ │ ├── test_ole_methods.rb │ │ ├── test_propertyputref.rb │ │ ├── test_thread.rb │ │ ├── test_win32ole.rb │ │ ├── test_win32ole_event.rb │ │ ├── test_win32ole_method.rb │ │ ├── test_win32ole_param.rb │ │ ├── test_win32ole_record.rb │ │ ├── test_win32ole_type.rb │ │ ├── test_win32ole_typelib.rb │ │ ├── test_win32ole_variable.rb │ │ ├── test_win32ole_variant.rb │ │ ├── test_win32ole_variant_m.rb │ │ ├── test_win32ole_variant_outarg.rb │ │ └── test_word.rb │ ├── yaml │ │ └── test_store.rb │ └── zlib │ │ └── test_zlib.rb ├── thread.c ├── thread_pthread.c ├── thread_pthread.h ├── thread_sync.c ├── thread_win32.c ├── thread_win32.h ├── time.c ├── timev.h ├── tool │ ├── asm_parse.rb │ ├── bisect.sh │ ├── build-transcode │ ├── change_maker.rb │ ├── checksum.rb │ ├── config.guess │ ├── config.sub │ ├── downloader.rb │ ├── enc-emoji-citrus-gen.rb │ ├── enc-emoji4unicode.rb │ ├── enc-unicode.rb │ ├── eval.rb │ ├── expand-config.rb │ ├── extlibs.rb │ ├── fake.rb │ ├── file2lastrev.rb │ ├── gem-unpack.rb │ ├── gen_dummy_probes.rb │ ├── gen_ruby_tapset.rb │ ├── generic_erb.rb │ ├── id2token.rb │ ├── ifchange │ ├── insns2vm.rb │ ├── install-sh │ ├── instruction.rb │ ├── jisx0208.rb │ ├── make-snapshot │ ├── make_hgraph.rb │ ├── mdoc2man.rb │ ├── merger.rb │ ├── mk_call_iseq_optimized.rb │ ├── mkconfig.rb │ ├── mkrunnable.rb │ ├── node_name.rb │ ├── parse.rb │ ├── probes_to_wiki.rb │ ├── rbinstall.rb │ ├── rbuninstall.rb │ ├── redmine-backporter.rb │ ├── release.sh │ ├── rmdirs │ ├── runruby.rb │ ├── strip-rdoc.rb │ ├── test │ │ └── test_jisx0208.rb │ ├── transcode-tblgen.rb │ ├── update-deps │ ├── vcs.rb │ ├── vpath.rb │ ├── vtlh.rb │ └── ytab.sed ├── transcode.c ├── transcode_data.h ├── util.c ├── variable.c ├── version.c ├── version.h ├── vm.c ├── vm.inc ├── vm_args.c ├── vm_backtrace.c ├── vm_call_iseq_optimized.inc ├── vm_core.h ├── vm_debug.h ├── vm_dump.c ├── vm_eval.c ├── vm_exec.c ├── vm_exec.h ├── vm_insnhelper.c ├── vm_insnhelper.h ├── vm_method.c ├── vm_opts.h ├── vm_trace.c ├── vmtc.inc ├── vsnprintf.c └── win32 │ ├── Makefile.sub │ ├── README.win32 │ ├── configure.bat │ ├── dir.h │ ├── enc-setup.mak │ ├── file.c │ ├── file.h │ ├── ifchange.bat │ ├── makedirs.bat │ ├── mkexports.rb │ ├── resource.rb │ ├── rm.bat │ ├── rmdirs.bat │ ├── rtname.cmd │ ├── setup.mak │ ├── win32.c │ └── winmain.c ├── tests └── ruby-compiler └── vendor ├── bundler-1.15.1.gem ├── gdbm ├── ABOUT-NLS ├── AUTHORS ├── COPYING ├── ChangeLog ├── INSTALL ├── Makefile.am ├── Makefile.in ├── NEWS ├── NOTE-WARNING ├── README ├── THANKS ├── aclocal.m4 ├── autoconf.h.in ├── build-aux │ ├── compile │ ├── config.guess │ ├── config.rpath │ ├── config.sub │ ├── depcomp │ ├── install-sh │ ├── ltmain.sh │ ├── mdate-sh │ ├── missing │ ├── texinfo.tex │ └── ylwrap ├── compat │ ├── Makefile.am │ ├── Makefile.in │ ├── close.c │ ├── dbm-priv.h │ ├── dbm.h │ ├── dbmclose.c │ ├── dbmdelete.c │ ├── dbmdirfno.c │ ├── dbmerr.c │ ├── dbmfetch.c │ ├── dbminit.c │ ├── dbmopen.c │ ├── dbmpagfno.c │ ├── dbmrdonly.c │ ├── dbmseq.c │ ├── dbmstore.c │ ├── delete.c │ ├── fetch.c │ ├── ndbm.h │ ├── seq.c │ └── store.c ├── configure ├── configure.ac ├── doc │ ├── Makefile.am │ ├── Makefile.in │ ├── fdl.texi │ ├── gdbm.3 │ ├── gdbm.info │ ├── gdbm.texi │ ├── gdbm_dump.1 │ ├── gdbm_load.1 │ ├── gdbmtool.1 │ ├── stamp-vti │ └── version.texi ├── export │ ├── Makefile.am │ ├── Makefile.in │ └── export.c ├── git2chg.awk ├── m4 │ ├── gettext.m4 │ ├── iconv.m4 │ ├── intlmacosx.m4 │ ├── lib-ld.m4 │ ├── lib-link.m4 │ ├── lib-prefix.m4 │ ├── libtool.m4 │ ├── longlong.m4 │ ├── ltoptions.m4 │ ├── ltsugar.m4 │ ├── ltversion.m4 │ ├── lt~obsolete.m4 │ ├── nls.m4 │ ├── po.m4 │ └── progtest.m4 ├── po │ ├── LINGUAS │ ├── Makefile.in.in │ ├── Makevars │ ├── POTFILES.in │ ├── Rules-quot │ ├── boldquot.sed │ ├── da.gmo │ ├── da.po │ ├── de.gmo │ ├── de.po │ ├── en@boldquot.header │ ├── en@quot.header │ ├── eo.gmo │ ├── eo.po │ ├── fi.gmo │ ├── fi.po │ ├── fr.gmo │ ├── fr.po │ ├── gdbm.pot │ ├── insert-header.sin │ ├── ja.gmo │ ├── ja.po │ ├── pl.gmo │ ├── pl.po │ ├── pt_BR.gmo │ ├── pt_BR.po │ ├── quot.sed │ ├── remove-potcdate.sin │ ├── sr.gmo │ ├── sr.po │ ├── stamp-po │ ├── uk.gmo │ ├── uk.po │ ├── vi.gmo │ └── vi.po ├── src │ ├── Makefile.am │ ├── Makefile.in │ ├── base64.c │ ├── bucket.c │ ├── datconv.c │ ├── debug.c │ ├── err.c │ ├── falloc.c │ ├── findkey.c │ ├── fullio.c │ ├── gdbm.h.in │ ├── gdbm.magic │ ├── gdbm_dump.c │ ├── gdbm_load.c │ ├── gdbmapp.h │ ├── gdbmclose.c │ ├── gdbmconst.h │ ├── gdbmcount.c │ ├── gdbmdefs.h │ ├── gdbmdelete.c │ ├── gdbmdump.c │ ├── gdbmerrno.c │ ├── gdbmexists.c │ ├── gdbmexp.c │ ├── gdbmfdesc.c │ ├── gdbmfetch.c │ ├── gdbmimp.c │ ├── gdbmload.c │ ├── gdbmopen.c │ ├── gdbmreorg.c │ ├── gdbmseq.c │ ├── gdbmsetopt.c │ ├── gdbmstore.c │ ├── gdbmsync.c │ ├── gdbmtool.c │ ├── gdbmtool.h │ ├── gettext.h │ ├── gram.c │ ├── gram.h │ ├── gram.y │ ├── hash.c │ ├── input-rl.c │ ├── input-std.c │ ├── lex.c │ ├── lex.l │ ├── lock.c │ ├── mem.c │ ├── mmap.c │ ├── parseopt.c │ ├── progname.c │ ├── proto.h │ ├── recover.c │ ├── systems.h │ ├── update.c │ ├── util.c │ ├── var.c │ └── version.c └── tests │ ├── Makefile.am │ ├── Makefile.in │ ├── atlocal.in │ ├── blocksize00.at │ ├── blocksize01.at │ ├── blocksize02.at │ ├── cloexec00.at │ ├── cloexec01.at │ ├── cloexec02.at │ ├── cloexec03.at │ ├── create00.at │ ├── d_creat_ce.c │ ├── dbmcreate00.at │ ├── dbmcvt.at │ ├── dbmdel00.at │ ├── dbmdel01.at │ ├── dbmdel02.at │ ├── dbmfetch00.at │ ├── dbmfetch01.at │ ├── dbmfetch02.at │ ├── dbmfetch03.at │ ├── delete00.at │ ├── delete01.at │ ├── delete02.at │ ├── dtdel.c │ ├── dtdump.c │ ├── dtfetch.c │ ├── dtload.c │ ├── fdop.c │ ├── fetch00.at │ ├── fetch01.at │ ├── g_open_ce.c │ ├── g_reorg_ce.c │ ├── gtdel.c │ ├── gtdump.c │ ├── gtfetch.c │ ├── gtload.c │ ├── gtopt.c │ ├── gtrecover.c │ ├── gtver.c │ ├── num2word.c │ ├── package.m4 │ ├── progname.h │ ├── setopt00.at │ ├── setopt01.at │ ├── testsuite │ ├── testsuite.at │ └── version.at ├── libffi ├── ChangeLog ├── ChangeLog.libffi ├── ChangeLog.libffi-3.1 ├── ChangeLog.libgcj ├── ChangeLog.v1 ├── LICENSE ├── Makefile.am ├── Makefile.in ├── README ├── acinclude.m4 ├── aclocal.m4 ├── compile ├── config.guess ├── config.sub ├── configure ├── configure.ac ├── depcomp ├── doc │ ├── libffi.info │ ├── libffi.texi │ ├── stamp-vti │ └── version.texi ├── fficonfig.h.in ├── generate-darwin-source-and-headers.py ├── include │ ├── Makefile.am │ ├── Makefile.in │ ├── ffi.h.in │ └── ffi_common.h ├── install-sh ├── libffi.pc.in ├── libffi.xcodeproj │ └── project.pbxproj ├── libtool-ldflags ├── libtool-version ├── ltmain.sh ├── m4 │ ├── asmcfi.m4 │ ├── ax_append_flag.m4 │ ├── ax_cc_maxopt.m4 │ ├── ax_cflags_warn_all.m4 │ ├── ax_check_compile_flag.m4 │ ├── ax_compiler_vendor.m4 │ ├── ax_configure_args.m4 │ ├── ax_enable_builddir.m4 │ ├── ax_gcc_archflag.m4 │ ├── ax_gcc_x86_cpuid.m4 │ ├── libtool.m4 │ ├── ltoptions.m4 │ ├── ltsugar.m4 │ ├── ltversion.m4 │ └── lt~obsolete.m4 ├── man │ ├── Makefile.am │ ├── Makefile.in │ ├── ffi.3 │ ├── ffi_call.3 │ ├── ffi_prep_cif.3 │ └── ffi_prep_cif_var.3 ├── mdate-sh ├── missing ├── msvcc.sh ├── src │ ├── aarch64 │ │ ├── ffi.c │ │ ├── ffitarget.h │ │ └── sysv.S │ ├── alpha │ │ ├── ffi.c │ │ ├── ffitarget.h │ │ └── osf.S │ ├── arc │ │ ├── arcompact.S │ │ ├── ffi.c │ │ └── ffitarget.h │ ├── arm │ │ ├── ffi.c │ │ ├── ffitarget.h │ │ ├── gentramp.sh │ │ ├── sysv.S │ │ └── trampoline.S │ ├── avr32 │ │ ├── ffi.c │ │ ├── ffitarget.h │ │ └── sysv.S │ ├── bfin │ │ ├── ffi.c │ │ ├── ffitarget.h │ │ └── sysv.S │ ├── closures.c │ ├── cris │ │ ├── ffi.c │ │ ├── ffitarget.h │ │ └── sysv.S │ ├── debug.c │ ├── dlmalloc.c │ ├── frv │ │ ├── eabi.S │ │ ├── ffi.c │ │ └── ffitarget.h │ ├── ia64 │ │ ├── ffi.c │ │ ├── ffitarget.h │ │ ├── ia64_flags.h │ │ └── unix.S │ ├── java_raw_api.c │ ├── m32r │ │ ├── ffi.c │ │ ├── ffitarget.h │ │ └── sysv.S │ ├── m68k │ │ ├── ffi.c │ │ ├── ffitarget.h │ │ └── sysv.S │ ├── m88k │ │ ├── ffi.c │ │ ├── ffitarget.h │ │ └── obsd.S │ ├── metag │ │ ├── ffi.c │ │ ├── ffitarget.h │ │ └── sysv.S │ ├── microblaze │ │ ├── ffi.c │ │ ├── ffitarget.h │ │ └── sysv.S │ ├── mips │ │ ├── ffi.c │ │ ├── ffitarget.h │ │ ├── n32.S │ │ └── o32.S │ ├── moxie │ │ ├── eabi.S │ │ ├── ffi.c │ │ └── ffitarget.h │ ├── nios2 │ │ ├── ffi.c │ │ ├── ffitarget.h │ │ └── sysv.S │ ├── or1k │ │ ├── ffi.c │ │ ├── ffitarget.h │ │ └── sysv.S │ ├── pa │ │ ├── ffi.c │ │ ├── ffitarget.h │ │ ├── hpux32.S │ │ └── linux.S │ ├── powerpc │ │ ├── aix.S │ │ ├── aix_closure.S │ │ ├── asm.h │ │ ├── darwin.S │ │ ├── darwin_closure.S │ │ ├── ffi.c │ │ ├── ffi_darwin.c │ │ ├── ffi_linux64.c │ │ ├── ffi_powerpc.h │ │ ├── ffi_sysv.c │ │ ├── ffitarget.h │ │ ├── linux64.S │ │ ├── linux64_closure.S │ │ ├── ppc_closure.S │ │ └── sysv.S │ ├── prep_cif.c │ ├── raw_api.c │ ├── s390 │ │ ├── ffi.c │ │ ├── ffitarget.h │ │ └── sysv.S │ ├── sh │ │ ├── ffi.c │ │ ├── ffitarget.h │ │ └── sysv.S │ ├── sh64 │ │ ├── ffi.c │ │ ├── ffitarget.h │ │ └── sysv.S │ ├── sparc │ │ ├── ffi.c │ │ ├── ffitarget.h │ │ ├── v8.S │ │ └── v9.S │ ├── tile │ │ ├── ffi.c │ │ ├── ffitarget.h │ │ └── tile.S │ ├── types.c │ ├── vax │ │ ├── elfbsd.S │ │ ├── ffi.c │ │ └── ffitarget.h │ ├── x86 │ │ ├── darwin.S │ │ ├── darwin64.S │ │ ├── ffi.c │ │ ├── ffi64.c │ │ ├── ffitarget.h │ │ ├── freebsd.S │ │ ├── sysv.S │ │ ├── unix64.S │ │ ├── win32.S │ │ └── win64.S │ └── xtensa │ │ ├── ffi.c │ │ ├── ffitarget.h │ │ └── sysv.S ├── testsuite │ ├── Makefile.am │ ├── Makefile.in │ ├── config │ │ └── default.exp │ ├── lib │ │ ├── libffi.exp │ │ ├── target-libpath.exp │ │ └── wrapper.exp │ └── libffi.call │ │ ├── call.exp │ │ ├── closure_fn0.c │ │ ├── closure_fn1.c │ │ ├── closure_fn2.c │ │ ├── closure_fn3.c │ │ ├── closure_fn4.c │ │ ├── closure_fn5.c │ │ ├── closure_fn6.c │ │ ├── closure_loc_fn0.c │ │ ├── closure_simple.c │ │ ├── cls_12byte.c │ │ ├── cls_16byte.c │ │ ├── cls_18byte.c │ │ ├── cls_19byte.c │ │ ├── cls_1_1byte.c │ │ ├── cls_20byte.c │ │ ├── cls_20byte1.c │ │ ├── cls_24byte.c │ │ ├── cls_2byte.c │ │ ├── cls_3_1byte.c │ │ ├── cls_3byte1.c │ │ ├── cls_3byte2.c │ │ ├── cls_4_1byte.c │ │ ├── cls_4byte.c │ │ ├── cls_5_1_byte.c │ │ ├── cls_5byte.c │ │ ├── cls_64byte.c │ │ ├── cls_6_1_byte.c │ │ ├── cls_6byte.c │ │ ├── cls_7_1_byte.c │ │ ├── cls_7byte.c │ │ ├── cls_8byte.c │ │ ├── cls_9byte1.c │ │ ├── cls_9byte2.c │ │ ├── cls_align_double.c │ │ ├── cls_align_float.c │ │ ├── cls_align_longdouble.c │ │ ├── cls_align_longdouble_split.c │ │ ├── cls_align_longdouble_split2.c │ │ ├── cls_align_pointer.c │ │ ├── cls_align_sint16.c │ │ ├── cls_align_sint32.c │ │ ├── cls_align_sint64.c │ │ ├── cls_align_uint16.c │ │ ├── cls_align_uint32.c │ │ ├── cls_align_uint64.c │ │ ├── cls_dbls_struct.c │ │ ├── cls_double.c │ │ ├── cls_double_va.c │ │ ├── cls_float.c │ │ ├── cls_longdouble.c │ │ ├── cls_longdouble_va.c │ │ ├── cls_multi_schar.c │ │ ├── cls_multi_sshort.c │ │ ├── cls_multi_sshortchar.c │ │ ├── cls_multi_uchar.c │ │ ├── cls_multi_ushort.c │ │ ├── cls_multi_ushortchar.c │ │ ├── cls_pointer.c │ │ ├── cls_pointer_stack.c │ │ ├── cls_schar.c │ │ ├── cls_sint.c │ │ ├── cls_sshort.c │ │ ├── cls_struct_va1.c │ │ ├── cls_uchar.c │ │ ├── cls_uchar_va.c │ │ ├── cls_uint.c │ │ ├── cls_uint_va.c │ │ ├── cls_ulong_va.c │ │ ├── cls_ulonglong.c │ │ ├── cls_ushort.c │ │ ├── cls_ushort_va.c │ │ ├── err_bad_abi.c │ │ ├── err_bad_typedef.c │ │ ├── ffitest.h │ │ ├── float.c │ │ ├── float1.c │ │ ├── float2.c │ │ ├── float3.c │ │ ├── float4.c │ │ ├── float_va.c │ │ ├── huge_struct.c │ │ ├── many.c │ │ ├── many2.c │ │ ├── negint.c │ │ ├── nested_struct.c │ │ ├── nested_struct1.c │ │ ├── nested_struct10.c │ │ ├── nested_struct11.c │ │ ├── nested_struct2.c │ │ ├── nested_struct3.c │ │ ├── nested_struct4.c │ │ ├── nested_struct5.c │ │ ├── nested_struct6.c │ │ ├── nested_struct7.c │ │ ├── nested_struct8.c │ │ ├── nested_struct9.c │ │ ├── problem1.c │ │ ├── promotion.c │ │ ├── pyobjc-tc.c │ │ ├── return_dbl.c │ │ ├── return_dbl1.c │ │ ├── return_dbl2.c │ │ ├── return_fl.c │ │ ├── return_fl1.c │ │ ├── return_fl2.c │ │ ├── return_fl3.c │ │ ├── return_ldl.c │ │ ├── return_ll.c │ │ ├── return_ll1.c │ │ ├── return_sc.c │ │ ├── return_sl.c │ │ ├── return_uc.c │ │ ├── return_ul.c │ │ ├── stret_large.c │ │ ├── stret_large2.c │ │ ├── stret_medium.c │ │ ├── stret_medium2.c │ │ ├── strlen.c │ │ ├── strlen2.c │ │ ├── strlen3.c │ │ ├── strlen4.c │ │ ├── struct1.c │ │ ├── struct2.c │ │ ├── struct3.c │ │ ├── struct4.c │ │ ├── struct5.c │ │ ├── struct6.c │ │ ├── struct7.c │ │ ├── struct8.c │ │ ├── struct9.c │ │ ├── testclosure.c │ │ ├── uninitialized.c │ │ ├── unwindtest.cc │ │ ├── unwindtest_ffi_call.cc │ │ ├── va_1.c │ │ ├── va_struct1.c │ │ ├── va_struct2.c │ │ └── va_struct3.c └── texinfo.tex ├── ncurses ├── ANNOUNCE ├── AUTHORS ├── Ada95 │ ├── Makefile.in │ ├── README │ ├── TODO │ ├── aclocal.m4 │ ├── configure │ ├── configure.in │ ├── doc │ │ └── Makefile.in │ ├── gen │ │ ├── Makefile.in │ │ ├── adacurses-config.in │ │ ├── gen.c │ │ ├── html.m4 │ │ ├── normal.m4 │ │ ├── table.m4 │ │ ├── terminal_interface-curses-aux.ads.m4 │ │ ├── terminal_interface-curses-forms-field_types.ads.m4 │ │ ├── terminal_interface-curses-forms-field_user_data.ads.m4 │ │ ├── terminal_interface-curses-forms-form_user_data.ads.m4 │ │ ├── terminal_interface-curses-forms.ads.m4 │ │ ├── terminal_interface-curses-menus-item_user_data.ads.m4 │ │ ├── terminal_interface-curses-menus-menu_user_data.ads.m4 │ │ ├── terminal_interface-curses-menus.ads.m4 │ │ ├── terminal_interface-curses-mouse.ads.m4 │ │ ├── terminal_interface-curses-panels-user_data.ads.m4 │ │ ├── terminal_interface-curses-panels.ads.m4 │ │ ├── terminal_interface-curses-trace.ads.m4 │ │ ├── terminal_interface-curses.adb.m4 │ │ └── terminal_interface-curses.ads.m4 │ ├── include │ │ ├── MKncurses_def.sh │ │ ├── Makefile.in │ │ ├── ncurses_cfg.hin │ │ └── ncurses_defs │ ├── make-tar.sh │ ├── mk-1st.awk │ ├── package │ │ ├── AdaCurses-doc.spec │ │ ├── AdaCurses.spec │ │ └── debian │ │ │ ├── compat │ │ │ ├── control │ │ │ ├── copyright │ │ │ ├── docs │ │ │ ├── rules │ │ │ ├── source │ │ │ └── format │ │ │ └── watch │ ├── samples │ │ ├── Makefile.in │ │ ├── README │ │ ├── explain.txt │ │ ├── ncurses.adb │ │ ├── ncurses2-acs_and_scroll.adb │ │ ├── ncurses2-acs_and_scroll.ads │ │ ├── ncurses2-acs_display.adb │ │ ├── ncurses2-acs_display.ads │ │ ├── ncurses2-attr_test.adb │ │ ├── ncurses2-attr_test.ads │ │ ├── ncurses2-color_edit.adb │ │ ├── ncurses2-color_edit.ads │ │ ├── ncurses2-color_test.adb │ │ ├── ncurses2-color_test.ads │ │ ├── ncurses2-demo_forms.adb │ │ ├── ncurses2-demo_forms.ads │ │ ├── ncurses2-demo_pad.adb │ │ ├── ncurses2-demo_pad.ads │ │ ├── ncurses2-demo_panels.adb │ │ ├── ncurses2-demo_panels.ads │ │ ├── ncurses2-flushinp_test.adb │ │ ├── ncurses2-flushinp_test.ads │ │ ├── ncurses2-genericputs.adb │ │ ├── ncurses2-genericputs.ads │ │ ├── ncurses2-getch.ads │ │ ├── ncurses2-getch_test.adb │ │ ├── ncurses2-getch_test.ads │ │ ├── ncurses2-getopt.adb │ │ ├── ncurses2-getopt.ads │ │ ├── ncurses2-m.adb │ │ ├── ncurses2-m.ads │ │ ├── ncurses2-menu_test.adb │ │ ├── ncurses2-menu_test.ads │ │ ├── ncurses2-overlap_test.adb │ │ ├── ncurses2-overlap_test.ads │ │ ├── ncurses2-slk_test.adb │ │ ├── ncurses2-slk_test.ads │ │ ├── ncurses2-test_sgr_attributes.adb │ │ ├── ncurses2-test_sgr_attributes.ads │ │ ├── ncurses2-trace_set.adb │ │ ├── ncurses2-trace_set.ads │ │ ├── ncurses2-util.adb │ │ ├── ncurses2-util.ads │ │ ├── ncurses2.ads │ │ ├── rain.adb │ │ ├── rain.ads │ │ ├── sample-curses_demo-attributes.adb │ │ ├── sample-curses_demo-attributes.ads │ │ ├── sample-curses_demo-mouse.adb │ │ ├── sample-curses_demo-mouse.ads │ │ ├── sample-curses_demo.adb │ │ ├── sample-curses_demo.ads │ │ ├── sample-explanation.adb │ │ ├── sample-explanation.ads │ │ ├── sample-form_demo-aux.adb │ │ ├── sample-form_demo-aux.ads │ │ ├── sample-form_demo-handler.adb │ │ ├── sample-form_demo-handler.ads │ │ ├── sample-form_demo.adb │ │ ├── sample-form_demo.ads │ │ ├── sample-function_key_setting.adb │ │ ├── sample-function_key_setting.ads │ │ ├── sample-header_handler.adb │ │ ├── sample-header_handler.ads │ │ ├── sample-helpers.adb │ │ ├── sample-helpers.ads │ │ ├── sample-keyboard_handler.adb │ │ ├── sample-keyboard_handler.ads │ │ ├── sample-manifest.ads │ │ ├── sample-menu_demo-aux.adb │ │ ├── sample-menu_demo-aux.ads │ │ ├── sample-menu_demo-handler.adb │ │ ├── sample-menu_demo-handler.ads │ │ ├── sample-menu_demo.adb │ │ ├── sample-menu_demo.ads │ │ ├── sample-my_field_type.adb │ │ ├── sample-my_field_type.ads │ │ ├── sample-text_io_demo.adb │ │ ├── sample-text_io_demo.ads │ │ ├── sample.adb │ │ ├── sample.ads │ │ ├── status.adb │ │ ├── status.ads │ │ ├── tour.adb │ │ └── tour.ads │ └── src │ │ ├── Makefile.in │ │ ├── c_threaded_variables.c │ │ ├── c_threaded_variables.h │ │ ├── c_varargs_to_ada.c │ │ ├── c_varargs_to_ada.h │ │ ├── library.gpr │ │ ├── modules │ │ ├── ncurses_compat.c │ │ ├── terminal_interface-curses-aux.adb │ │ ├── terminal_interface-curses-forms-field_types-alpha.adb │ │ ├── terminal_interface-curses-forms-field_types-alpha.ads │ │ ├── terminal_interface-curses-forms-field_types-alphanumeric.adb │ │ ├── terminal_interface-curses-forms-field_types-alphanumeric.ads │ │ ├── terminal_interface-curses-forms-field_types-enumeration-ada.adb │ │ ├── terminal_interface-curses-forms-field_types-enumeration-ada.ads │ │ ├── terminal_interface-curses-forms-field_types-enumeration.adb │ │ ├── terminal_interface-curses-forms-field_types-enumeration.ads │ │ ├── terminal_interface-curses-forms-field_types-intfield.adb │ │ ├── terminal_interface-curses-forms-field_types-intfield.ads │ │ ├── terminal_interface-curses-forms-field_types-ipv4_address.adb │ │ ├── terminal_interface-curses-forms-field_types-ipv4_address.ads │ │ ├── terminal_interface-curses-forms-field_types-numeric.adb │ │ ├── terminal_interface-curses-forms-field_types-numeric.ads │ │ ├── terminal_interface-curses-forms-field_types-regexp.adb │ │ ├── terminal_interface-curses-forms-field_types-regexp.ads │ │ ├── terminal_interface-curses-forms-field_types-user-choice.adb │ │ ├── terminal_interface-curses-forms-field_types-user-choice.ads │ │ ├── terminal_interface-curses-forms-field_types-user.adb │ │ ├── terminal_interface-curses-forms-field_types-user.ads │ │ ├── terminal_interface-curses-forms-field_types.adb │ │ ├── terminal_interface-curses-forms-field_user_data.adb │ │ ├── terminal_interface-curses-forms-form_user_data.adb │ │ ├── terminal_interface-curses-forms.adb │ │ ├── terminal_interface-curses-menus-item_user_data.adb │ │ ├── terminal_interface-curses-menus-menu_user_data.adb │ │ ├── terminal_interface-curses-menus.adb │ │ ├── terminal_interface-curses-mouse.adb │ │ ├── terminal_interface-curses-panels-user_data.adb │ │ ├── terminal_interface-curses-panels.adb │ │ ├── terminal_interface-curses-putwin.adb │ │ ├── terminal_interface-curses-putwin.ads │ │ ├── terminal_interface-curses-termcap.adb │ │ ├── terminal_interface-curses-termcap.ads │ │ ├── terminal_interface-curses-terminfo.adb │ │ ├── terminal_interface-curses-terminfo.ads │ │ ├── terminal_interface-curses-text_io-aux.adb │ │ ├── terminal_interface-curses-text_io-aux.ads │ │ ├── terminal_interface-curses-text_io-complex_io.adb │ │ ├── terminal_interface-curses-text_io-complex_io.ads │ │ ├── terminal_interface-curses-text_io-decimal_io.adb │ │ ├── terminal_interface-curses-text_io-decimal_io.ads │ │ ├── terminal_interface-curses-text_io-enumeration_io.adb │ │ ├── terminal_interface-curses-text_io-enumeration_io.ads │ │ ├── terminal_interface-curses-text_io-fixed_io.adb │ │ ├── terminal_interface-curses-text_io-fixed_io.ads │ │ ├── terminal_interface-curses-text_io-float_io.adb │ │ ├── terminal_interface-curses-text_io-float_io.ads │ │ ├── terminal_interface-curses-text_io-integer_io.adb │ │ ├── terminal_interface-curses-text_io-integer_io.ads │ │ ├── terminal_interface-curses-text_io-modular_io.adb │ │ ├── terminal_interface-curses-text_io-modular_io.ads │ │ ├── terminal_interface-curses-text_io.adb │ │ ├── terminal_interface-curses-text_io.ads │ │ ├── terminal_interface-curses-trace.adb_p │ │ └── terminal_interface.ads ├── COPYING ├── INSTALL ├── MANIFEST ├── Makefile.in ├── Makefile.os2 ├── NEWS ├── README ├── README.MinGW ├── README.emx ├── TO-DO ├── VERSION ├── aclocal.m4 ├── announce.html.in ├── c++ │ ├── Makefile.in │ ├── NEWS │ ├── PROBLEMS │ ├── README-first │ ├── cursesapp.cc │ ├── cursesapp.h │ ├── cursesf.cc │ ├── cursesf.h │ ├── cursesm.cc │ ├── cursesm.h │ ├── cursesmain.cc │ ├── cursesp.cc │ ├── cursesp.h │ ├── cursespad.cc │ ├── cursesw.cc │ ├── cursesw.h │ ├── cursslk.cc │ ├── cursslk.h │ ├── demo.cc │ ├── edit_cfg.sh │ ├── etip.h.in │ ├── headers │ ├── internal.h │ └── modules ├── config.guess ├── config.sub ├── configure ├── configure.in ├── convert_configure.pl ├── dist.mk ├── doc │ ├── hackguide.doc │ ├── html │ │ ├── Ada95.html │ │ ├── NCURSES-Programming-HOWTO.html │ │ ├── ada │ │ │ ├── files.htm │ │ │ ├── files │ │ │ │ └── T.htm │ │ │ ├── funcs.htm │ │ │ ├── funcs │ │ │ │ ├── A.htm │ │ │ │ ├── B.htm │ │ │ │ ├── C.htm │ │ │ │ ├── D.htm │ │ │ │ ├── E.htm │ │ │ │ ├── F.htm │ │ │ │ ├── G.htm │ │ │ │ ├── H.htm │ │ │ │ ├── I.htm │ │ │ │ ├── K.htm │ │ │ │ ├── L.htm │ │ │ │ ├── M.htm │ │ │ │ ├── N.htm │ │ │ │ ├── O.htm │ │ │ │ ├── P.htm │ │ │ │ ├── Q.htm │ │ │ │ ├── R.htm │ │ │ │ ├── S.htm │ │ │ │ ├── T.htm │ │ │ │ ├── U.htm │ │ │ │ ├── V.htm │ │ │ │ └── W.htm │ │ │ ├── index.htm │ │ │ ├── main.htm │ │ │ ├── table.html │ │ │ ├── terminal_interface-curses-aux__adb.htm │ │ │ ├── terminal_interface-curses-aux__ads.htm │ │ │ ├── terminal_interface-curses-forms-field_types-alpha__adb.htm │ │ │ ├── terminal_interface-curses-forms-field_types-alpha__ads.htm │ │ │ ├── terminal_interface-curses-forms-field_types-alphanumeric__adb.htm │ │ │ ├── terminal_interface-curses-forms-field_types-alphanumeric__ads.htm │ │ │ ├── terminal_interface-curses-forms-field_types-enumeration-ada__adb.htm │ │ │ ├── terminal_interface-curses-forms-field_types-enumeration-ada__ads.htm │ │ │ ├── terminal_interface-curses-forms-field_types-enumeration__adb.htm │ │ │ ├── terminal_interface-curses-forms-field_types-enumeration__ads.htm │ │ │ ├── terminal_interface-curses-forms-field_types-intfield__adb.htm │ │ │ ├── terminal_interface-curses-forms-field_types-intfield__ads.htm │ │ │ ├── terminal_interface-curses-forms-field_types-ipv4_address__adb.htm │ │ │ ├── terminal_interface-curses-forms-field_types-ipv4_address__ads.htm │ │ │ ├── terminal_interface-curses-forms-field_types-numeric__adb.htm │ │ │ ├── terminal_interface-curses-forms-field_types-numeric__ads.htm │ │ │ ├── terminal_interface-curses-forms-field_types-regexp__adb.htm │ │ │ ├── terminal_interface-curses-forms-field_types-regexp__ads.htm │ │ │ ├── terminal_interface-curses-forms-field_types-user-choice__adb.htm │ │ │ ├── terminal_interface-curses-forms-field_types-user-choice__ads.htm │ │ │ ├── terminal_interface-curses-forms-field_types-user__adb.htm │ │ │ ├── terminal_interface-curses-forms-field_types-user__ads.htm │ │ │ ├── terminal_interface-curses-forms-field_types__adb.htm │ │ │ ├── terminal_interface-curses-forms-field_types__ads.htm │ │ │ ├── terminal_interface-curses-forms-field_user_data__adb.htm │ │ │ ├── terminal_interface-curses-forms-field_user_data__ads.htm │ │ │ ├── terminal_interface-curses-forms-form_user_data__adb.htm │ │ │ ├── terminal_interface-curses-forms-form_user_data__ads.htm │ │ │ ├── terminal_interface-curses-forms__adb.htm │ │ │ ├── terminal_interface-curses-forms__ads.htm │ │ │ ├── terminal_interface-curses-menus-item_user_data__adb.htm │ │ │ ├── terminal_interface-curses-menus-item_user_data__ads.htm │ │ │ ├── terminal_interface-curses-menus-menu_user_data__adb.htm │ │ │ ├── terminal_interface-curses-menus-menu_user_data__ads.htm │ │ │ ├── terminal_interface-curses-menus__adb.htm │ │ │ ├── terminal_interface-curses-menus__ads.htm │ │ │ ├── terminal_interface-curses-mouse__adb.htm │ │ │ ├── terminal_interface-curses-mouse__ads.htm │ │ │ ├── terminal_interface-curses-panels-user_data__adb.htm │ │ │ ├── terminal_interface-curses-panels-user_data__ads.htm │ │ │ ├── terminal_interface-curses-panels__adb.htm │ │ │ ├── terminal_interface-curses-panels__ads.htm │ │ │ ├── terminal_interface-curses-putwin__adb.htm │ │ │ ├── terminal_interface-curses-putwin__ads.htm │ │ │ ├── terminal_interface-curses-termcap__adb.htm │ │ │ ├── terminal_interface-curses-termcap__ads.htm │ │ │ ├── terminal_interface-curses-terminfo__adb.htm │ │ │ ├── terminal_interface-curses-terminfo__ads.htm │ │ │ ├── terminal_interface-curses-text_io-aux__adb.htm │ │ │ ├── terminal_interface-curses-text_io-aux__ads.htm │ │ │ ├── terminal_interface-curses-text_io-complex_io__adb.htm │ │ │ ├── terminal_interface-curses-text_io-complex_io__ads.htm │ │ │ ├── terminal_interface-curses-text_io-decimal_io__adb.htm │ │ │ ├── terminal_interface-curses-text_io-decimal_io__ads.htm │ │ │ ├── terminal_interface-curses-text_io-enumeration_io__adb.htm │ │ │ ├── terminal_interface-curses-text_io-enumeration_io__ads.htm │ │ │ ├── terminal_interface-curses-text_io-fixed_io__adb.htm │ │ │ ├── terminal_interface-curses-text_io-fixed_io__ads.htm │ │ │ ├── terminal_interface-curses-text_io-float_io__adb.htm │ │ │ ├── terminal_interface-curses-text_io-float_io__ads.htm │ │ │ ├── terminal_interface-curses-text_io-integer_io__adb.htm │ │ │ ├── terminal_interface-curses-text_io-integer_io__ads.htm │ │ │ ├── terminal_interface-curses-text_io-modular_io__adb.htm │ │ │ ├── terminal_interface-curses-text_io-modular_io__ads.htm │ │ │ ├── terminal_interface-curses-text_io__adb.htm │ │ │ ├── terminal_interface-curses-text_io__ads.htm │ │ │ ├── terminal_interface-curses-trace__adb.htm │ │ │ ├── terminal_interface-curses-trace__ads.htm │ │ │ ├── terminal_interface-curses__adb.htm │ │ │ ├── terminal_interface-curses__ads.htm │ │ │ ├── terminal_interface-curses_constants__ads.htm │ │ │ └── terminal_interface__ads.htm │ │ ├── announce.html │ │ ├── hackguide.html │ │ ├── index.html │ │ ├── man │ │ │ ├── adacurses-config.1.html │ │ │ ├── captoinfo.1m.html │ │ │ ├── clear.1.html │ │ │ ├── curs_add_wch.3x.html │ │ │ ├── curs_add_wchstr.3x.html │ │ │ ├── curs_addch.3x.html │ │ │ ├── curs_addchstr.3x.html │ │ │ ├── curs_addstr.3x.html │ │ │ ├── curs_addwstr.3x.html │ │ │ ├── curs_attr.3x.html │ │ │ ├── curs_beep.3x.html │ │ │ ├── curs_bkgd.3x.html │ │ │ ├── curs_bkgrnd.3x.html │ │ │ ├── curs_border.3x.html │ │ │ ├── curs_border_set.3x.html │ │ │ ├── curs_clear.3x.html │ │ │ ├── curs_color.3x.html │ │ │ ├── curs_delch.3x.html │ │ │ ├── curs_deleteln.3x.html │ │ │ ├── curs_extend.3x.html │ │ │ ├── curs_get_wch.3x.html │ │ │ ├── curs_get_wstr.3x.html │ │ │ ├── curs_getcchar.3x.html │ │ │ ├── curs_getch.3x.html │ │ │ ├── curs_getstr.3x.html │ │ │ ├── curs_getyx.3x.html │ │ │ ├── curs_in_wch.3x.html │ │ │ ├── curs_in_wchstr.3x.html │ │ │ ├── curs_inch.3x.html │ │ │ ├── curs_inchstr.3x.html │ │ │ ├── curs_initscr.3x.html │ │ │ ├── curs_inopts.3x.html │ │ │ ├── curs_ins_wch.3x.html │ │ │ ├── curs_ins_wstr.3x.html │ │ │ ├── curs_insch.3x.html │ │ │ ├── curs_insstr.3x.html │ │ │ ├── curs_instr.3x.html │ │ │ ├── curs_inwstr.3x.html │ │ │ ├── curs_kernel.3x.html │ │ │ ├── curs_legacy.3x.html │ │ │ ├── curs_memleaks.3x.html │ │ │ ├── curs_mouse.3x.html │ │ │ ├── curs_move.3x.html │ │ │ ├── curs_opaque.3x.html │ │ │ ├── curs_outopts.3x.html │ │ │ ├── curs_overlay.3x.html │ │ │ ├── curs_pad.3x.html │ │ │ ├── curs_print.3x.html │ │ │ ├── curs_printw.3x.html │ │ │ ├── curs_refresh.3x.html │ │ │ ├── curs_scanw.3x.html │ │ │ ├── curs_scr_dump.3x.html │ │ │ ├── curs_scroll.3x.html │ │ │ ├── curs_slk.3x.html │ │ │ ├── curs_sp_funcs.3x.html │ │ │ ├── curs_termattrs.3x.html │ │ │ ├── curs_termcap.3x.html │ │ │ ├── curs_terminfo.3x.html │ │ │ ├── curs_threads.3x.html │ │ │ ├── curs_touch.3x.html │ │ │ ├── curs_trace.3x.html │ │ │ ├── curs_util.3x.html │ │ │ ├── curs_variables.3x.html │ │ │ ├── curs_window.3x.html │ │ │ ├── default_colors.3x.html │ │ │ ├── define_key.3x.html │ │ │ ├── form.3x.html │ │ │ ├── form_cursor.3x.html │ │ │ ├── form_data.3x.html │ │ │ ├── form_driver.3x.html │ │ │ ├── form_field.3x.html │ │ │ ├── form_field_attributes.3x.html │ │ │ ├── form_field_buffer.3x.html │ │ │ ├── form_field_info.3x.html │ │ │ ├── form_field_just.3x.html │ │ │ ├── form_field_new.3x.html │ │ │ ├── form_field_opts.3x.html │ │ │ ├── form_field_userptr.3x.html │ │ │ ├── form_field_validation.3x.html │ │ │ ├── form_fieldtype.3x.html │ │ │ ├── form_hook.3x.html │ │ │ ├── form_new.3x.html │ │ │ ├── form_new_page.3x.html │ │ │ ├── form_opts.3x.html │ │ │ ├── form_page.3x.html │ │ │ ├── form_post.3x.html │ │ │ ├── form_requestname.3x.html │ │ │ ├── form_userptr.3x.html │ │ │ ├── form_variables.3x.html │ │ │ ├── form_win.3x.html │ │ │ ├── index.html │ │ │ ├── infocmp.1m.html │ │ │ ├── infotocap.1m.html │ │ │ ├── key_defined.3x.html │ │ │ ├── keybound.3x.html │ │ │ ├── keyok.3x.html │ │ │ ├── legacy_coding.3x.html │ │ │ ├── menu.3x.html │ │ │ ├── menu_attributes.3x.html │ │ │ ├── menu_cursor.3x.html │ │ │ ├── menu_driver.3x.html │ │ │ ├── menu_format.3x.html │ │ │ ├── menu_hook.3x.html │ │ │ ├── menu_items.3x.html │ │ │ ├── menu_mark.3x.html │ │ │ ├── menu_new.3x.html │ │ │ ├── menu_opts.3x.html │ │ │ ├── menu_pattern.3x.html │ │ │ ├── menu_post.3x.html │ │ │ ├── menu_requestname.3x.html │ │ │ ├── menu_spacing.3x.html │ │ │ ├── menu_userptr.3x.html │ │ │ ├── menu_win.3x.html │ │ │ ├── mitem_current.3x.html │ │ │ ├── mitem_name.3x.html │ │ │ ├── mitem_new.3x.html │ │ │ ├── mitem_opts.3x.html │ │ │ ├── mitem_userptr.3x.html │ │ │ ├── mitem_value.3x.html │ │ │ ├── mitem_visible.3x.html │ │ │ ├── ncurses.3x.html │ │ │ ├── ncurses5-config.1.html │ │ │ ├── panel.3x.html │ │ │ ├── resizeterm.3x.html │ │ │ ├── tabs.1.html │ │ │ ├── term.5.html │ │ │ ├── term.7.html │ │ │ ├── term_variables.3x.html │ │ │ ├── terminfo.5.html │ │ │ ├── tic.1m.html │ │ │ ├── toe.1m.html │ │ │ ├── tput.1.html │ │ │ ├── tset.1.html │ │ │ └── wresize.3x.html │ │ └── ncurses-intro.html │ └── ncurses-intro.doc ├── form │ ├── Makefile.in │ ├── READ.ME │ ├── f_trace.c │ ├── fld_arg.c │ ├── fld_attr.c │ ├── fld_current.c │ ├── fld_def.c │ ├── fld_dup.c │ ├── fld_ftchoice.c │ ├── fld_ftlink.c │ ├── fld_info.c │ ├── fld_just.c │ ├── fld_link.c │ ├── fld_max.c │ ├── fld_move.c │ ├── fld_newftyp.c │ ├── fld_opts.c │ ├── fld_pad.c │ ├── fld_page.c │ ├── fld_stat.c │ ├── fld_type.c │ ├── fld_user.c │ ├── form.h │ ├── form.priv.h │ ├── frm_cursor.c │ ├── frm_data.c │ ├── frm_def.c │ ├── frm_driver.c │ ├── frm_hook.c │ ├── frm_opts.c │ ├── frm_page.c │ ├── frm_post.c │ ├── frm_req_name.c │ ├── frm_scale.c │ ├── frm_sub.c │ ├── frm_user.c │ ├── frm_win.c │ ├── fty_alnum.c │ ├── fty_alpha.c │ ├── fty_enum.c │ ├── fty_generic.c │ ├── fty_int.c │ ├── fty_ipv4.c │ ├── fty_num.c │ ├── fty_regex.c │ ├── headers │ ├── llib-lform │ ├── llib-lformt │ ├── llib-lformtw │ ├── llib-lformw │ └── modules ├── include │ ├── Caps │ ├── Caps.aix4 │ ├── Caps.hpux11 │ ├── Caps.keys │ ├── Caps.osf1r5 │ ├── Caps.uwin │ ├── MKhashsize.sh │ ├── MKkey_defs.sh │ ├── MKncurses_def.sh │ ├── MKparametrized.sh │ ├── MKterm.h.awk.in │ ├── Makefile.in │ ├── capdefaults.c │ ├── curses.h.in │ ├── curses.tail │ ├── curses.wide │ ├── edit_cfg.sh │ ├── hashed_db.h │ ├── headers │ ├── nc_alloc.h │ ├── nc_mingw.h │ ├── nc_panel.h │ ├── nc_string.h │ ├── nc_termios.h │ ├── nc_tparm.h │ ├── ncurses_cfg.hin │ ├── ncurses_defs │ ├── ncurses_dll.h.in │ ├── ncurses_mingw.h │ ├── term_entry.h │ ├── termcap.h.in │ ├── tic.h │ └── unctrl.h.in ├── install-sh ├── man │ ├── MKada_config.in │ ├── MKncu_config.in │ ├── MKterminfo.sh │ ├── Makefile.in │ ├── captoinfo.1m │ ├── clear.1 │ ├── curs_add_wch.3x │ ├── curs_add_wchstr.3x │ ├── curs_addch.3x │ ├── curs_addchstr.3x │ ├── curs_addstr.3x │ ├── curs_addwstr.3x │ ├── curs_attr.3x │ ├── curs_beep.3x │ ├── curs_bkgd.3x │ ├── curs_bkgrnd.3x │ ├── curs_border.3x │ ├── curs_border_set.3x │ ├── curs_clear.3x │ ├── curs_color.3x │ ├── curs_delch.3x │ ├── curs_deleteln.3x │ ├── curs_extend.3x │ ├── curs_get_wch.3x │ ├── curs_get_wstr.3x │ ├── curs_getcchar.3x │ ├── curs_getch.3x │ ├── curs_getstr.3x │ ├── curs_getyx.3x │ ├── curs_in_wch.3x │ ├── curs_in_wchstr.3x │ ├── curs_inch.3x │ ├── curs_inchstr.3x │ ├── curs_initscr.3x │ ├── curs_inopts.3x │ ├── curs_ins_wch.3x │ ├── curs_ins_wstr.3x │ ├── curs_insch.3x │ ├── curs_insstr.3x │ ├── curs_instr.3x │ ├── curs_inwstr.3x │ ├── curs_kernel.3x │ ├── curs_legacy.3x │ ├── curs_memleaks.3x │ ├── curs_mouse.3x │ ├── curs_move.3x │ ├── curs_opaque.3x │ ├── curs_outopts.3x │ ├── curs_overlay.3x │ ├── curs_pad.3x │ ├── curs_print.3x │ ├── curs_printw.3x │ ├── curs_refresh.3x │ ├── curs_scanw.3x │ ├── curs_scr_dump.3x │ ├── curs_scroll.3x │ ├── curs_slk.3x │ ├── curs_sp_funcs.3x │ ├── curs_termattrs.3x │ ├── curs_termcap.3x │ ├── curs_terminfo.3x │ ├── curs_threads.3x │ ├── curs_touch.3x │ ├── curs_trace.3x │ ├── curs_util.3x │ ├── curs_variables.3x │ ├── curs_window.3x │ ├── default_colors.3x │ ├── define_key.3x │ ├── form.3x │ ├── form_cursor.3x │ ├── form_data.3x │ ├── form_driver.3x │ ├── form_field.3x │ ├── form_field_attributes.3x │ ├── form_field_buffer.3x │ ├── form_field_info.3x │ ├── form_field_just.3x │ ├── form_field_new.3x │ ├── form_field_opts.3x │ ├── form_field_userptr.3x │ ├── form_field_validation.3x │ ├── form_fieldtype.3x │ ├── form_hook.3x │ ├── form_new.3x │ ├── form_new_page.3x │ ├── form_opts.3x │ ├── form_page.3x │ ├── form_post.3x │ ├── form_requestname.3x │ ├── form_userptr.3x │ ├── form_variables.3x │ ├── form_win.3x │ ├── infocmp.1m │ ├── infotocap.1m │ ├── key_defined.3x │ ├── keybound.3x │ ├── keyok.3x │ ├── legacy_coding.3x │ ├── make_sed.sh │ ├── man_db.renames │ ├── manhtml.aliases │ ├── manhtml.externs │ ├── manlinks.sed │ ├── menu.3x │ ├── menu_attributes.3x │ ├── menu_cursor.3x │ ├── menu_driver.3x │ ├── menu_format.3x │ ├── menu_hook.3x │ ├── menu_items.3x │ ├── menu_mark.3x │ ├── menu_new.3x │ ├── menu_opts.3x │ ├── menu_pattern.3x │ ├── menu_post.3x │ ├── menu_requestname.3x │ ├── menu_spacing.3x │ ├── menu_userptr.3x │ ├── menu_win.3x │ ├── mitem_current.3x │ ├── mitem_name.3x │ ├── mitem_new.3x │ ├── mitem_opts.3x │ ├── mitem_userptr.3x │ ├── mitem_value.3x │ ├── mitem_visible.3x │ ├── ncurses.3x │ ├── panel.3x │ ├── resizeterm.3x │ ├── tabs.1 │ ├── term.5 │ ├── term.7 │ ├── term_variables.3x │ ├── terminfo.head │ ├── terminfo.tail │ ├── tic.1m │ ├── toe.1m │ ├── tput.1 │ ├── tset.1 │ └── wresize.3x ├── menu │ ├── Makefile.in │ ├── READ.ME │ ├── eti.h │ ├── headers │ ├── llib-lmenu │ ├── llib-lmenut │ ├── llib-lmenutw │ ├── llib-lmenuw │ ├── m_attribs.c │ ├── m_cursor.c │ ├── m_driver.c │ ├── m_format.c │ ├── m_global.c │ ├── m_hook.c │ ├── m_item_cur.c │ ├── m_item_nam.c │ ├── m_item_new.c │ ├── m_item_opt.c │ ├── m_item_top.c │ ├── m_item_use.c │ ├── m_item_val.c │ ├── m_item_vis.c │ ├── m_items.c │ ├── m_new.c │ ├── m_opts.c │ ├── m_pad.c │ ├── m_pattern.c │ ├── m_post.c │ ├── m_req_name.c │ ├── m_scale.c │ ├── m_spacing.c │ ├── m_sub.c │ ├── m_trace.c │ ├── m_userptr.c │ ├── m_win.c │ ├── menu.h │ ├── menu.priv.h │ ├── mf_common.h │ └── modules ├── misc │ ├── Makefile.in │ ├── chkdef.cmd │ ├── cleantic.cmd │ ├── cmpdef.cmd │ ├── csort │ ├── emx.src │ ├── form.def │ ├── form.ref │ ├── gen-pkgconfig.in │ ├── gen_edit.sh │ ├── magic │ ├── makedef.cmd │ ├── makellib │ ├── menu.def │ ├── menu.ref │ ├── ncurses-config.in │ ├── ncurses.def │ ├── ncurses.ref │ ├── ncurses.supp │ ├── panel.def │ ├── panel.ref │ ├── run_tic.in │ ├── shlib │ ├── tabset │ │ ├── std │ │ ├── stdcrt │ │ ├── vt100 │ │ └── vt300 │ ├── tdlint │ └── terminfo.src ├── mk-0th.awk ├── mk-1st.awk ├── mk-2nd.awk ├── mk-hdr.awk ├── ncurses │ ├── Makefile.in │ ├── README │ ├── README.IZ │ ├── SigAction.h │ ├── base │ │ ├── MKkeyname.awk │ │ ├── MKlib_gen.sh │ │ ├── MKunctrl.awk │ │ ├── README │ │ ├── define_key.c │ │ ├── key_defined.c │ │ ├── keybound.c │ │ ├── keyok.c │ │ ├── legacy_coding.c │ │ ├── lib_addch.c │ │ ├── lib_addstr.c │ │ ├── lib_beep.c │ │ ├── lib_bkgd.c │ │ ├── lib_box.c │ │ ├── lib_chgat.c │ │ ├── lib_clear.c │ │ ├── lib_clearok.c │ │ ├── lib_clrbot.c │ │ ├── lib_clreol.c │ │ ├── lib_color.c │ │ ├── lib_colorset.c │ │ ├── lib_delch.c │ │ ├── lib_delwin.c │ │ ├── lib_dft_fgbg.c │ │ ├── lib_driver.c │ │ ├── lib_echo.c │ │ ├── lib_endwin.c │ │ ├── lib_erase.c │ │ ├── lib_flash.c │ │ ├── lib_freeall.c │ │ ├── lib_getch.c │ │ ├── lib_getstr.c │ │ ├── lib_hline.c │ │ ├── lib_immedok.c │ │ ├── lib_inchstr.c │ │ ├── lib_initscr.c │ │ ├── lib_insch.c │ │ ├── lib_insdel.c │ │ ├── lib_insnstr.c │ │ ├── lib_instr.c │ │ ├── lib_isendwin.c │ │ ├── lib_leaveok.c │ │ ├── lib_mouse.c │ │ ├── lib_move.c │ │ ├── lib_mvwin.c │ │ ├── lib_newterm.c │ │ ├── lib_newwin.c │ │ ├── lib_nl.c │ │ ├── lib_overlay.c │ │ ├── lib_pad.c │ │ ├── lib_printw.c │ │ ├── lib_redrawln.c │ │ ├── lib_refresh.c │ │ ├── lib_restart.c │ │ ├── lib_scanw.c │ │ ├── lib_screen.c │ │ ├── lib_scroll.c │ │ ├── lib_scrollok.c │ │ ├── lib_scrreg.c │ │ ├── lib_set_term.c │ │ ├── lib_slk.c │ │ ├── lib_slkatr_set.c │ │ ├── lib_slkatrof.c │ │ ├── lib_slkatron.c │ │ ├── lib_slkatrset.c │ │ ├── lib_slkattr.c │ │ ├── lib_slkclear.c │ │ ├── lib_slkcolor.c │ │ ├── lib_slkinit.c │ │ ├── lib_slklab.c │ │ ├── lib_slkrefr.c │ │ ├── lib_slkset.c │ │ ├── lib_slktouch.c │ │ ├── lib_touch.c │ │ ├── lib_ungetch.c │ │ ├── lib_vline.c │ │ ├── lib_wattroff.c │ │ ├── lib_wattron.c │ │ ├── lib_winch.c │ │ ├── lib_window.c │ │ ├── nc_panel.c │ │ ├── resizeterm.c │ │ ├── safe_sprintf.c │ │ ├── sigaction.c │ │ ├── tries.c │ │ ├── use_window.c │ │ ├── version.c │ │ ├── vsscanf.c │ │ └── wresize.c │ ├── build.priv.h │ ├── curses.priv.h │ ├── fifo_defs.h │ ├── llib-lncurses │ ├── llib-lncursest │ ├── llib-lncursestw │ ├── llib-lncursesw │ ├── llib-ltic │ ├── llib-ltict │ ├── llib-ltictw │ ├── llib-lticw │ ├── llib-ltinfo │ ├── llib-ltinfot │ ├── llib-ltinfotw │ ├── llib-ltinfow │ ├── modules │ ├── tinfo │ │ ├── MKcaptab.awk │ │ ├── MKcaptab.sh │ │ ├── MKcodes.awk │ │ ├── MKfallback.sh │ │ ├── MKkeys_list.sh │ │ ├── MKnames.awk │ │ ├── README │ │ ├── access.c │ │ ├── add_tries.c │ │ ├── alloc_entry.c │ │ ├── alloc_ttype.c │ │ ├── captoinfo.c │ │ ├── comp_error.c │ │ ├── comp_expand.c │ │ ├── comp_hash.c │ │ ├── comp_parse.c │ │ ├── comp_scan.c │ │ ├── db_iterator.c │ │ ├── doalloc.c │ │ ├── entries.c │ │ ├── free_ttype.c │ │ ├── getenv_num.c │ │ ├── hashed_db.c │ │ ├── home_terminfo.c │ │ ├── init_keytry.c │ │ ├── lib_acs.c │ │ ├── lib_baudrate.c │ │ ├── lib_cur_term.c │ │ ├── lib_data.c │ │ ├── lib_has_cap.c │ │ ├── lib_kernel.c │ │ ├── lib_longname.c │ │ ├── lib_napms.c │ │ ├── lib_options.c │ │ ├── lib_print.c │ │ ├── lib_raw.c │ │ ├── lib_setup.c │ │ ├── lib_termcap.c │ │ ├── lib_termname.c │ │ ├── lib_tgoto.c │ │ ├── lib_ti.c │ │ ├── lib_tparm.c │ │ ├── lib_tputs.c │ │ ├── lib_ttyflags.c │ │ ├── make_hash.c │ │ ├── make_keys.c │ │ ├── name_match.c │ │ ├── obsolete.c │ │ ├── parse_entry.c │ │ ├── read_entry.c │ │ ├── read_termcap.c │ │ ├── strings.c │ │ ├── tinfo_driver.c │ │ ├── trim_sgr0.c │ │ ├── use_screen.c │ │ └── write_entry.c │ ├── trace │ │ ├── README │ │ ├── lib_trace.c │ │ ├── lib_traceatr.c │ │ ├── lib_tracebits.c │ │ ├── lib_tracechr.c │ │ ├── lib_tracedmp.c │ │ ├── lib_tracemse.c │ │ ├── trace_buf.c │ │ ├── trace_tries.c │ │ ├── trace_xnames.c │ │ ├── varargs.c │ │ └── visbuf.c │ ├── tty │ │ ├── MKexpanded.sh │ │ ├── hardscroll.c │ │ ├── hashmap.c │ │ ├── lib_mvcur.c │ │ ├── lib_tstp.c │ │ ├── lib_twait.c │ │ ├── lib_vidattr.c │ │ └── tty_update.c │ ├── wcwidth.h │ ├── widechar │ │ ├── charable.c │ │ ├── lib_add_wch.c │ │ ├── lib_box_set.c │ │ ├── lib_cchar.c │ │ ├── lib_erasewchar.c │ │ ├── lib_get_wch.c │ │ ├── lib_get_wstr.c │ │ ├── lib_hline_set.c │ │ ├── lib_in_wch.c │ │ ├── lib_in_wchnstr.c │ │ ├── lib_ins_wch.c │ │ ├── lib_inwstr.c │ │ ├── lib_key_name.c │ │ ├── lib_pecho_wchar.c │ │ ├── lib_slk_wset.c │ │ ├── lib_unget_wch.c │ │ ├── lib_vid_attr.c │ │ ├── lib_vline_set.c │ │ ├── lib_wacs.c │ │ ├── lib_wunctrl.c │ │ └── widechars.c │ └── win32con │ │ ├── gettimeofday.c │ │ ├── wcwidth.c │ │ └── win_driver.c ├── package │ ├── debian-mingw │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── rules │ │ ├── source │ │ │ └── format │ │ └── watch │ ├── debian-mingw64 │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── rules │ │ ├── source │ │ │ └── format │ │ └── watch │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── rules │ │ ├── source │ │ │ └── format │ │ └── watch │ ├── mingw-ncurses.nsi │ ├── mingw-ncurses.spec │ ├── ncurses.map │ ├── ncurses.spec │ ├── ncurses.sym │ ├── ncursest.map │ ├── ncursest.sym │ ├── ncursestw.map │ ├── ncursestw.sym │ ├── ncursesw.map │ └── ncursesw.sym ├── panel │ ├── Makefile.in │ ├── headers │ ├── llib-lpanel │ ├── llib-lpanelt │ ├── llib-lpaneltw │ ├── llib-lpanelw │ ├── modules │ ├── p_above.c │ ├── p_below.c │ ├── p_bottom.c │ ├── p_delete.c │ ├── p_hidden.c │ ├── p_hide.c │ ├── p_move.c │ ├── p_new.c │ ├── p_replace.c │ ├── p_show.c │ ├── p_top.c │ ├── p_update.c │ ├── p_user.c │ ├── p_win.c │ ├── panel.c │ ├── panel.h │ └── panel.priv.h ├── progs │ ├── MKtermsort.sh │ ├── Makefile.in │ ├── capconvert │ ├── clear.c │ ├── clear.sh │ ├── dump_entry.c │ ├── dump_entry.h │ ├── infocmp.c │ ├── modules │ ├── progs.priv.h │ ├── tabs.c │ ├── tic.c │ ├── toe.c │ ├── tparm_type.c │ ├── tparm_type.h │ ├── tput.c │ ├── transform.c │ └── tset.c └── test │ ├── Makefile.in │ ├── README │ ├── aclocal.m4 │ ├── background.c │ ├── blue.c │ ├── bs.6 │ ├── bs.c │ ├── bulgarian-utf8.txt │ ├── cardfile.c │ ├── cardfile.dat │ ├── chgat.c │ ├── clip_printw.c │ ├── color_name.h │ ├── color_set.c │ ├── configure │ ├── configure.in │ ├── demo_altkeys.c │ ├── demo_defkey.c │ ├── demo_forms.c │ ├── demo_forms.txt │ ├── demo_keyok.c │ ├── demo_menus.c │ ├── demo_panels.c │ ├── demo_termcap.c │ ├── demo_terminfo.c │ ├── ditto.c │ ├── dots.c │ ├── dots_curses.c │ ├── dots_mvcur.c │ ├── dots_termcap.c │ ├── echochar.c │ ├── edit_field.c │ ├── edit_field.h │ ├── filter.c │ ├── firework.c │ ├── firstlast.c │ ├── foldkeys.c │ ├── form_driver_w.c │ ├── gdc.6 │ ├── gdc.c │ ├── hanoi.c │ ├── hashtest.c │ ├── inch_wide.c │ ├── inchs.c │ ├── ins_wide.c │ ├── insdelln.c │ ├── inserts.c │ ├── key_names.c │ ├── keynames.c │ ├── knight.c │ ├── linedata.h │ ├── linux-color.dat │ ├── listused.sh │ ├── lrtest.c │ ├── make-tar.sh │ ├── mk-test.awk │ ├── modules │ ├── movewindow.c │ ├── ncurses.c │ ├── ncurses_tst.hin │ ├── newdemo.c │ ├── package │ ├── debian-mingw │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── docs │ │ ├── rules │ │ ├── source │ │ │ └── format │ │ └── watch │ ├── debian-mingw64 │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── docs │ │ ├── rules │ │ ├── source │ │ │ └── format │ │ └── watch │ ├── debian │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── docs │ │ ├── rules │ │ ├── source │ │ │ └── format │ │ └── watch │ ├── mingw-ncurses-examples.spec │ └── ncurses-examples.spec │ ├── programs │ ├── railroad.c │ ├── rain.c │ ├── redraw.c │ ├── savescreen.c │ ├── savescreen.sh │ ├── tclock.c │ ├── test.priv.h │ ├── test_add_wchstr.c │ ├── test_addchstr.c │ ├── test_addstr.c │ ├── test_addwstr.c │ ├── test_arrays.c │ ├── test_get_wstr.c │ ├── test_getstr.c │ ├── test_instr.c │ ├── test_inwstr.c │ ├── test_opaque.c │ ├── test_setupterm.c │ ├── test_vid_puts.c │ ├── test_vidputs.c │ ├── testaddch.c │ ├── testcurs.c │ ├── testscanw.c │ ├── tracemunch │ ├── view.c │ ├── widechars-utf8.txt │ ├── widechars.h │ ├── worm.c │ ├── xmas.c │ ├── xterm-16color.dat │ ├── xterm-256color.dat │ └── xterm-88color.dat ├── openssl ├── .gitattributes ├── .travis-create-release.sh ├── .travis.yml ├── ACKNOWLEDGEMENTS ├── AUTHORS ├── CHANGES ├── CONTRIBUTING ├── Configurations │ ├── 00-base-templates.conf │ ├── 10-main.conf │ ├── 50-djgpp.conf │ ├── 50-haiku.conf │ ├── 50-masm.conf │ ├── 90-team.conf │ ├── INTERNALS.Configure │ ├── README │ ├── README.design │ ├── common.tmpl │ ├── descrip.mms.tmpl │ ├── unix-Makefile.tmpl │ ├── unix-checker.pm │ ├── windows-checker.pm │ └── windows-makefile.tmpl ├── Configure ├── FAQ ├── INSTALL ├── LICENSE ├── Makefile.shared ├── NEWS ├── NOTES.DJGPP ├── NOTES.PERL ├── NOTES.UNIX ├── NOTES.VMS ├── NOTES.WIN ├── README ├── README.ECC ├── README.ENGINE ├── README.FIPS ├── VMS │ ├── VMSify-conf.pl │ ├── engine.opt │ ├── openssl_ivp.com.in │ ├── openssl_shutdown.com.in │ ├── openssl_startup.com.in │ ├── openssl_utils.com.in │ ├── test-includes.com │ └── translatesyms.pl ├── apps │ ├── CA.pl.in │ ├── app_rand.c │ ├── apps.c │ ├── apps.h │ ├── asn1pars.c │ ├── build.info │ ├── ca-cert.srl │ ├── ca-key.pem │ ├── ca-req.pem │ ├── ca.c │ ├── cert.pem │ ├── ciphers.c │ ├── client.pem │ ├── cms.c │ ├── crl.c │ ├── crl2p7.c │ ├── ct_log_list.cnf │ ├── demoCA │ │ ├── cacert.pem │ │ ├── index.txt │ │ ├── private │ │ │ └── cakey.pem │ │ └── serial │ ├── demoSRP │ │ ├── srp_verifier.txt │ │ └── srp_verifier.txt.attr │ ├── dgst.c │ ├── dh1024.pem │ ├── dh2048.pem │ ├── dh4096.pem │ ├── dhparam.c │ ├── dsa-ca.pem │ ├── dsa-pca.pem │ ├── dsa.c │ ├── dsa1024.pem │ ├── dsa512.pem │ ├── dsap.pem │ ├── dsaparam.c │ ├── ec.c │ ├── ecparam.c │ ├── enc.c │ ├── engine.c │ ├── errstr.c │ ├── gendsa.c │ ├── genpkey.c │ ├── genrsa.c │ ├── nseq.c │ ├── ocsp.c │ ├── openssl-vms.cnf │ ├── openssl.c │ ├── openssl.cnf │ ├── opt.c │ ├── passwd.c │ ├── pca-cert.srl │ ├── pca-key.pem │ ├── pca-req.pem │ ├── pkcs12.c │ ├── pkcs7.c │ ├── pkcs8.c │ ├── pkey.c │ ├── pkeyparam.c │ ├── pkeyutl.c │ ├── prime.c │ ├── privkey.pem │ ├── progs.h │ ├── progs.pl │ ├── rand.c │ ├── rehash.c │ ├── req.c │ ├── req.pem │ ├── rsa.c │ ├── rsa8192.pem │ ├── rsautl.c │ ├── s1024key.pem │ ├── s1024req.pem │ ├── s512-key.pem │ ├── s512-req.pem │ ├── s_apps.h │ ├── s_cb.c │ ├── s_client.c │ ├── s_server.c │ ├── s_socket.c │ ├── s_time.c │ ├── server.pem │ ├── server.srl │ ├── server2.pem │ ├── sess_id.c │ ├── smime.c │ ├── speed.c │ ├── spkac.c │ ├── srp.c │ ├── testCA.pem │ ├── testdsa.h │ ├── testrsa.h │ ├── timeouts.h │ ├── ts.c │ ├── tsget.in │ ├── verify.c │ ├── version.c │ ├── vms_decc_init.c │ ├── vms_term_sock.c │ ├── vms_term_sock.h │ ├── win32_init.c │ └── x509.c ├── appveyor.yml ├── build.info ├── config ├── config.com ├── crypto │ ├── LPdir_nyi.c │ ├── LPdir_unix.c │ ├── LPdir_vms.c │ ├── LPdir_win.c │ ├── LPdir_win32.c │ ├── LPdir_wince.c │ ├── aes │ │ ├── aes_cbc.c │ │ ├── aes_cfb.c │ │ ├── aes_core.c │ │ ├── aes_ecb.c │ │ ├── aes_ige.c │ │ ├── aes_locl.h │ │ ├── aes_misc.c │ │ ├── aes_ofb.c │ │ ├── aes_wrap.c │ │ ├── aes_x86core.c │ │ ├── asm │ │ │ ├── aes-586.pl │ │ │ ├── aes-armv4.pl │ │ │ ├── aes-c64xplus.pl │ │ │ ├── aes-ia64.S │ │ │ ├── aes-mips.pl │ │ │ ├── aes-parisc.pl │ │ │ ├── aes-ppc.pl │ │ │ ├── aes-s390x.pl │ │ │ ├── aes-sparcv9.pl │ │ │ ├── aes-x86_64.pl │ │ │ ├── aesfx-sparcv9.pl │ │ │ ├── aesni-mb-x86_64.pl │ │ │ ├── aesni-sha1-x86_64.pl │ │ │ ├── aesni-sha256-x86_64.pl │ │ │ ├── aesni-x86.pl │ │ │ ├── aesni-x86_64.pl │ │ │ ├── aesp8-ppc.pl │ │ │ ├── aest4-sparcv9.pl │ │ │ ├── aesv8-armx.pl │ │ │ ├── bsaes-armv7.pl │ │ │ ├── bsaes-x86_64.pl │ │ │ ├── vpaes-armv8.pl │ │ │ ├── vpaes-ppc.pl │ │ │ ├── vpaes-x86.pl │ │ │ └── vpaes-x86_64.pl │ │ └── build.info │ ├── alphacpuid.pl │ ├── arm64cpuid.pl │ ├── arm_arch.h │ ├── armcap.c │ ├── armv4cpuid.pl │ ├── asn1 │ │ ├── a_bitstr.c │ │ ├── a_d2i_fp.c │ │ ├── a_digest.c │ │ ├── a_dup.c │ │ ├── a_gentm.c │ │ ├── a_i2d_fp.c │ │ ├── a_int.c │ │ ├── a_mbstr.c │ │ ├── a_object.c │ │ ├── a_octet.c │ │ ├── a_print.c │ │ ├── a_sign.c │ │ ├── a_strex.c │ │ ├── a_strnid.c │ │ ├── a_time.c │ │ ├── a_type.c │ │ ├── a_utctm.c │ │ ├── a_utf8.c │ │ ├── a_verify.c │ │ ├── ameth_lib.c │ │ ├── asn1_err.c │ │ ├── asn1_gen.c │ │ ├── asn1_lib.c │ │ ├── asn1_locl.h │ │ ├── asn1_par.c │ │ ├── asn_mime.c │ │ ├── asn_moid.c │ │ ├── asn_mstbl.c │ │ ├── asn_pack.c │ │ ├── bio_asn1.c │ │ ├── bio_ndef.c │ │ ├── build.info │ │ ├── charmap.h │ │ ├── charmap.pl │ │ ├── d2i_pr.c │ │ ├── d2i_pu.c │ │ ├── evp_asn1.c │ │ ├── f_int.c │ │ ├── f_string.c │ │ ├── i2d_pr.c │ │ ├── i2d_pu.c │ │ ├── n_pkey.c │ │ ├── nsseq.c │ │ ├── p5_pbe.c │ │ ├── p5_pbev2.c │ │ ├── p5_scrypt.c │ │ ├── p8_pkey.c │ │ ├── t_bitst.c │ │ ├── t_pkey.c │ │ ├── t_spki.c │ │ ├── tasn_dec.c │ │ ├── tasn_enc.c │ │ ├── tasn_fre.c │ │ ├── tasn_new.c │ │ ├── tasn_prn.c │ │ ├── tasn_scn.c │ │ ├── tasn_typ.c │ │ ├── tasn_utl.c │ │ ├── x_algor.c │ │ ├── x_bignum.c │ │ ├── x_info.c │ │ ├── x_int64.c │ │ ├── x_long.c │ │ ├── x_pkey.c │ │ ├── x_sig.c │ │ ├── x_spki.c │ │ └── x_val.c │ ├── async │ │ ├── arch │ │ │ ├── async_null.c │ │ │ ├── async_null.h │ │ │ ├── async_posix.c │ │ │ ├── async_posix.h │ │ │ ├── async_win.c │ │ │ └── async_win.h │ │ ├── async.c │ │ ├── async_err.c │ │ ├── async_locl.h │ │ ├── async_wait.c │ │ └── build.info │ ├── bf │ │ ├── asm │ │ │ └── bf-586.pl │ │ ├── bf_cbc.c │ │ ├── bf_cfb64.c │ │ ├── bf_ecb.c │ │ ├── bf_enc.c │ │ ├── bf_locl.h │ │ ├── bf_ofb64.c │ │ ├── bf_pi.h │ │ ├── bf_skey.c │ │ └── build.info │ ├── bio │ │ ├── b_addr.c │ │ ├── b_dump.c │ │ ├── b_print.c │ │ ├── b_sock.c │ │ ├── b_sock2.c │ │ ├── bf_buff.c │ │ ├── bf_lbuf.c │ │ ├── bf_nbio.c │ │ ├── bf_null.c │ │ ├── bio_cb.c │ │ ├── bio_err.c │ │ ├── bio_lcl.h │ │ ├── bio_lib.c │ │ ├── bio_meth.c │ │ ├── bss_acpt.c │ │ ├── bss_bio.c │ │ ├── bss_conn.c │ │ ├── bss_dgram.c │ │ ├── bss_fd.c │ │ ├── bss_file.c │ │ ├── bss_log.c │ │ ├── bss_mem.c │ │ ├── bss_null.c │ │ ├── bss_sock.c │ │ └── build.info │ ├── blake2 │ │ ├── blake2_impl.h │ │ ├── blake2_locl.h │ │ ├── blake2b.c │ │ ├── blake2s.c │ │ ├── build.info │ │ ├── m_blake2b.c │ │ └── m_blake2s.c │ ├── bn │ │ ├── README.pod │ │ ├── asm │ │ │ ├── alpha-mont.pl │ │ │ ├── armv4-gf2m.pl │ │ │ ├── armv4-mont.pl │ │ │ ├── armv8-mont.pl │ │ │ ├── bn-586.pl │ │ │ ├── bn-c64xplus.asm │ │ │ ├── c64xplus-gf2m.pl │ │ │ ├── co-586.pl │ │ │ ├── ia64-mont.pl │ │ │ ├── ia64.S │ │ │ ├── mips-mont.pl │ │ │ ├── mips.pl │ │ │ ├── pa-risc2.s │ │ │ ├── pa-risc2W.s │ │ │ ├── parisc-mont.pl │ │ │ ├── ppc-mont.pl │ │ │ ├── ppc.pl │ │ │ ├── ppc64-mont.pl │ │ │ ├── rsaz-avx2.pl │ │ │ ├── rsaz-x86_64.pl │ │ │ ├── s390x-gf2m.pl │ │ │ ├── s390x-mont.pl │ │ │ ├── s390x.S │ │ │ ├── sparct4-mont.pl │ │ │ ├── sparcv8.S │ │ │ ├── sparcv8plus.S │ │ │ ├── sparcv9-gf2m.pl │ │ │ ├── sparcv9-mont.pl │ │ │ ├── sparcv9a-mont.pl │ │ │ ├── via-mont.pl │ │ │ ├── vis3-mont.pl │ │ │ ├── x86-gf2m.pl │ │ │ ├── x86-mont.pl │ │ │ ├── x86.pl │ │ │ ├── x86_64-gcc.c │ │ │ ├── x86_64-gf2m.pl │ │ │ ├── x86_64-mont.pl │ │ │ └── x86_64-mont5.pl │ │ ├── bn_add.c │ │ ├── bn_asm.c │ │ ├── bn_blind.c │ │ ├── bn_const.c │ │ ├── bn_ctx.c │ │ ├── bn_depr.c │ │ ├── bn_dh.c │ │ ├── bn_div.c │ │ ├── bn_err.c │ │ ├── bn_exp.c │ │ ├── bn_exp2.c │ │ ├── bn_gcd.c │ │ ├── bn_gf2m.c │ │ ├── bn_intern.c │ │ ├── bn_kron.c │ │ ├── bn_lcl.h │ │ ├── bn_lib.c │ │ ├── bn_mod.c │ │ ├── bn_mont.c │ │ ├── bn_mpi.c │ │ ├── bn_mul.c │ │ ├── bn_nist.c │ │ ├── bn_prime.c │ │ ├── bn_prime.h │ │ ├── bn_prime.pl │ │ ├── bn_print.c │ │ ├── bn_rand.c │ │ ├── bn_recp.c │ │ ├── bn_shift.c │ │ ├── bn_sqr.c │ │ ├── bn_sqrt.c │ │ ├── bn_srp.c │ │ ├── bn_word.c │ │ ├── bn_x931p.c │ │ ├── build.info │ │ ├── rsaz_exp.c │ │ └── rsaz_exp.h │ ├── buffer │ │ ├── buf_err.c │ │ ├── buffer.c │ │ └── build.info │ ├── build.info │ ├── c64xpluscpuid.pl │ ├── camellia │ │ ├── asm │ │ │ ├── cmll-x86.pl │ │ │ ├── cmll-x86_64.pl │ │ │ └── cmllt4-sparcv9.pl │ │ ├── build.info │ │ ├── camellia.c │ │ ├── cmll_cbc.c │ │ ├── cmll_cfb.c │ │ ├── cmll_ctr.c │ │ ├── cmll_ecb.c │ │ ├── cmll_locl.h │ │ ├── cmll_misc.c │ │ └── cmll_ofb.c │ ├── cast │ │ ├── asm │ │ │ └── cast-586.pl │ │ ├── build.info │ │ ├── c_cfb64.c │ │ ├── c_ecb.c │ │ ├── c_enc.c │ │ ├── c_ofb64.c │ │ ├── c_skey.c │ │ ├── cast_lcl.h │ │ └── cast_s.h │ ├── chacha │ │ ├── asm │ │ │ ├── chacha-armv4.pl │ │ │ ├── chacha-armv8.pl │ │ │ ├── chacha-c64xplus.pl │ │ │ ├── chacha-ppc.pl │ │ │ ├── chacha-s390x.pl │ │ │ ├── chacha-x86.pl │ │ │ └── chacha-x86_64.pl │ │ ├── build.info │ │ └── chacha_enc.c │ ├── cmac │ │ ├── build.info │ │ ├── cm_ameth.c │ │ ├── cm_pmeth.c │ │ └── cmac.c │ ├── cms │ │ ├── build.info │ │ ├── cms_asn1.c │ │ ├── cms_att.c │ │ ├── cms_cd.c │ │ ├── cms_dd.c │ │ ├── cms_enc.c │ │ ├── cms_env.c │ │ ├── cms_err.c │ │ ├── cms_ess.c │ │ ├── cms_io.c │ │ ├── cms_kari.c │ │ ├── cms_lcl.h │ │ ├── cms_lib.c │ │ ├── cms_pwri.c │ │ ├── cms_sd.c │ │ └── cms_smime.c │ ├── comp │ │ ├── build.info │ │ ├── c_zlib.c │ │ ├── comp_err.c │ │ ├── comp_lcl.h │ │ └── comp_lib.c │ ├── conf │ │ ├── build.info │ │ ├── conf_api.c │ │ ├── conf_def.c │ │ ├── conf_def.h │ │ ├── conf_err.c │ │ ├── conf_lib.c │ │ ├── conf_mall.c │ │ ├── conf_mod.c │ │ ├── conf_sap.c │ │ └── keysets.pl │ ├── cpt_err.c │ ├── cryptlib.c │ ├── ct │ │ ├── build.info │ │ ├── ct_b64.c │ │ ├── ct_err.c │ │ ├── ct_locl.h │ │ ├── ct_log.c │ │ ├── ct_oct.c │ │ ├── ct_policy.c │ │ ├── ct_prn.c │ │ ├── ct_sct.c │ │ ├── ct_sct_ctx.c │ │ ├── ct_vfy.c │ │ └── ct_x509v3.c │ ├── cversion.c │ ├── des │ │ ├── asm │ │ │ ├── crypt586.pl │ │ │ ├── des-586.pl │ │ │ ├── des_enc.m4 │ │ │ ├── desboth.pl │ │ │ └── dest4-sparcv9.pl │ │ ├── build.info │ │ ├── cbc_cksm.c │ │ ├── cbc_enc.c │ │ ├── cfb64ede.c │ │ ├── cfb64enc.c │ │ ├── cfb_enc.c │ │ ├── des_enc.c │ │ ├── des_locl.h │ │ ├── ecb3_enc.c │ │ ├── ecb_enc.c │ │ ├── fcrypt.c │ │ ├── fcrypt_b.c │ │ ├── ncbc_enc.c │ │ ├── ofb64ede.c │ │ ├── ofb64enc.c │ │ ├── ofb_enc.c │ │ ├── pcbc_enc.c │ │ ├── qud_cksm.c │ │ ├── rand_key.c │ │ ├── rpc_des.h │ │ ├── rpc_enc.c │ │ ├── set_key.c │ │ ├── spr.h │ │ ├── str2key.c │ │ └── xcbc_enc.c │ ├── dh │ │ ├── build.info │ │ ├── dh1024.pem │ │ ├── dh192.pem │ │ ├── dh2048.pem │ │ ├── dh4096.pem │ │ ├── dh512.pem │ │ ├── dh_ameth.c │ │ ├── dh_asn1.c │ │ ├── dh_check.c │ │ ├── dh_depr.c │ │ ├── dh_err.c │ │ ├── dh_gen.c │ │ ├── dh_kdf.c │ │ ├── dh_key.c │ │ ├── dh_lib.c │ │ ├── dh_locl.h │ │ ├── dh_meth.c │ │ ├── dh_pmeth.c │ │ ├── dh_prn.c │ │ └── dh_rfc5114.c │ ├── dllmain.c │ ├── dsa │ │ ├── build.info │ │ ├── dsa_ameth.c │ │ ├── dsa_asn1.c │ │ ├── dsa_depr.c │ │ ├── dsa_err.c │ │ ├── dsa_gen.c │ │ ├── dsa_key.c │ │ ├── dsa_lib.c │ │ ├── dsa_locl.h │ │ ├── dsa_meth.c │ │ ├── dsa_ossl.c │ │ ├── dsa_pmeth.c │ │ ├── dsa_prn.c │ │ ├── dsa_sign.c │ │ └── dsa_vrf.c │ ├── dso │ │ ├── build.info │ │ ├── dso_dl.c │ │ ├── dso_dlfcn.c │ │ ├── dso_err.c │ │ ├── dso_lib.c │ │ ├── dso_locl.h │ │ ├── dso_openssl.c │ │ ├── dso_vms.c │ │ └── dso_win32.c │ ├── ebcdic.c │ ├── ec │ │ ├── asm │ │ │ ├── ecp_nistz256-armv4.pl │ │ │ ├── ecp_nistz256-armv8.pl │ │ │ ├── ecp_nistz256-avx2.pl │ │ │ ├── ecp_nistz256-sparcv9.pl │ │ │ ├── ecp_nistz256-x86.pl │ │ │ └── ecp_nistz256-x86_64.pl │ │ ├── build.info │ │ ├── curve25519.c │ │ ├── ec2_mult.c │ │ ├── ec2_oct.c │ │ ├── ec2_smpl.c │ │ ├── ec_ameth.c │ │ ├── ec_asn1.c │ │ ├── ec_check.c │ │ ├── ec_curve.c │ │ ├── ec_cvt.c │ │ ├── ec_err.c │ │ ├── ec_key.c │ │ ├── ec_kmeth.c │ │ ├── ec_lcl.h │ │ ├── ec_lib.c │ │ ├── ec_mult.c │ │ ├── ec_oct.c │ │ ├── ec_pmeth.c │ │ ├── ec_print.c │ │ ├── ecdh_kdf.c │ │ ├── ecdh_ossl.c │ │ ├── ecdsa_ossl.c │ │ ├── ecdsa_sign.c │ │ ├── ecdsa_vrf.c │ │ ├── eck_prn.c │ │ ├── ecp_mont.c │ │ ├── ecp_nist.c │ │ ├── ecp_nistp224.c │ │ ├── ecp_nistp256.c │ │ ├── ecp_nistp521.c │ │ ├── ecp_nistputil.c │ │ ├── ecp_nistz256.c │ │ ├── ecp_nistz256_table.c │ │ ├── ecp_oct.c │ │ ├── ecp_smpl.c │ │ └── ecx_meth.c │ ├── engine │ │ ├── README │ │ ├── build.info │ │ ├── eng_all.c │ │ ├── eng_cnf.c │ │ ├── eng_cryptodev.c │ │ ├── eng_ctrl.c │ │ ├── eng_dyn.c │ │ ├── eng_err.c │ │ ├── eng_fat.c │ │ ├── eng_init.c │ │ ├── eng_int.h │ │ ├── eng_lib.c │ │ ├── eng_list.c │ │ ├── eng_openssl.c │ │ ├── eng_pkey.c │ │ ├── eng_rdrand.c │ │ ├── eng_table.c │ │ ├── tb_asnmth.c │ │ ├── tb_cipher.c │ │ ├── tb_dh.c │ │ ├── tb_digest.c │ │ ├── tb_dsa.c │ │ ├── tb_eckey.c │ │ ├── tb_pkmeth.c │ │ ├── tb_rand.c │ │ └── tb_rsa.c │ ├── err │ │ ├── README │ │ ├── build.info │ │ ├── err.c │ │ ├── err_all.c │ │ ├── err_prn.c │ │ └── openssl.ec │ ├── evp │ │ ├── bio_b64.c │ │ ├── bio_enc.c │ │ ├── bio_md.c │ │ ├── bio_ok.c │ │ ├── build.info │ │ ├── c_allc.c │ │ ├── c_alld.c │ │ ├── cmeth_lib.c │ │ ├── digest.c │ │ ├── e_aes.c │ │ ├── e_aes_cbc_hmac_sha1.c │ │ ├── e_aes_cbc_hmac_sha256.c │ │ ├── e_bf.c │ │ ├── e_camellia.c │ │ ├── e_cast.c │ │ ├── e_chacha20_poly1305.c │ │ ├── e_des.c │ │ ├── e_des3.c │ │ ├── e_idea.c │ │ ├── e_null.c │ │ ├── e_old.c │ │ ├── e_rc2.c │ │ ├── e_rc4.c │ │ ├── e_rc4_hmac_md5.c │ │ ├── e_rc5.c │ │ ├── e_seed.c │ │ ├── e_xcbc_d.c │ │ ├── encode.c │ │ ├── evp_cnf.c │ │ ├── evp_enc.c │ │ ├── evp_err.c │ │ ├── evp_key.c │ │ ├── evp_lib.c │ │ ├── evp_locl.h │ │ ├── evp_pbe.c │ │ ├── evp_pkey.c │ │ ├── m_md2.c │ │ ├── m_md4.c │ │ ├── m_md5.c │ │ ├── m_md5_sha1.c │ │ ├── m_mdc2.c │ │ ├── m_null.c │ │ ├── m_ripemd.c │ │ ├── m_sha1.c │ │ ├── m_sigver.c │ │ ├── m_wp.c │ │ ├── names.c │ │ ├── p5_crpt.c │ │ ├── p5_crpt2.c │ │ ├── p_dec.c │ │ ├── p_enc.c │ │ ├── p_lib.c │ │ ├── p_open.c │ │ ├── p_seal.c │ │ ├── p_sign.c │ │ ├── p_verify.c │ │ ├── pmeth_fn.c │ │ ├── pmeth_gn.c │ │ ├── pmeth_lib.c │ │ └── scrypt.c │ ├── ex_data.c │ ├── hmac │ │ ├── build.info │ │ ├── hm_ameth.c │ │ ├── hm_pmeth.c │ │ ├── hmac.c │ │ └── hmac_lcl.h │ ├── ia64cpuid.S │ ├── idea │ │ ├── build.info │ │ ├── i_cbc.c │ │ ├── i_cfb64.c │ │ ├── i_ecb.c │ │ ├── i_ofb64.c │ │ ├── i_skey.c │ │ └── idea_lcl.h │ ├── include │ │ └── internal │ │ │ ├── asn1_int.h │ │ │ ├── async.h │ │ │ ├── bn_conf.h.in │ │ │ ├── bn_dh.h │ │ │ ├── bn_int.h │ │ │ ├── bn_srp.h │ │ │ ├── chacha.h │ │ │ ├── cryptlib.h │ │ │ ├── cryptlib_int.h │ │ │ ├── dso_conf.h.in │ │ │ ├── engine.h │ │ │ ├── err_int.h │ │ │ ├── evp_int.h │ │ │ ├── md32_common.h │ │ │ ├── objects.h │ │ │ ├── poly1305.h │ │ │ ├── rand.h │ │ │ └── x509_int.h │ ├── init.c │ ├── kdf │ │ ├── build.info │ │ ├── hkdf.c │ │ ├── kdf_err.c │ │ └── tls1_prf.c │ ├── lhash │ │ ├── build.info │ │ ├── lh_stats.c │ │ ├── lhash.c │ │ ├── lhash_lcl.h │ │ └── num.pl │ ├── md2 │ │ ├── build.info │ │ ├── md2_dgst.c │ │ └── md2_one.c │ ├── md4 │ │ ├── build.info │ │ ├── md4_dgst.c │ │ ├── md4_locl.h │ │ └── md4_one.c │ ├── md5 │ │ ├── asm │ │ │ ├── md5-586.pl │ │ │ ├── md5-ia64.S │ │ │ ├── md5-sparcv9.pl │ │ │ └── md5-x86_64.pl │ │ ├── build.info │ │ ├── md5_dgst.c │ │ ├── md5_locl.h │ │ └── md5_one.c │ ├── mdc2 │ │ ├── build.info │ │ ├── mdc2_one.c │ │ └── mdc2dgst.c │ ├── mem.c │ ├── mem_clr.c │ ├── mem_dbg.c │ ├── mem_sec.c │ ├── modes │ │ ├── asm │ │ │ ├── aesni-gcm-x86_64.pl │ │ │ ├── ghash-alpha.pl │ │ │ ├── ghash-armv4.pl │ │ │ ├── ghash-c64xplus.pl │ │ │ ├── ghash-ia64.pl │ │ │ ├── ghash-parisc.pl │ │ │ ├── ghash-s390x.pl │ │ │ ├── ghash-sparcv9.pl │ │ │ ├── ghash-x86.pl │ │ │ ├── ghash-x86_64.pl │ │ │ ├── ghashp8-ppc.pl │ │ │ └── ghashv8-armx.pl │ │ ├── build.info │ │ ├── cbc128.c │ │ ├── ccm128.c │ │ ├── cfb128.c │ │ ├── ctr128.c │ │ ├── cts128.c │ │ ├── gcm128.c │ │ ├── modes_lcl.h │ │ ├── ocb128.c │ │ ├── ofb128.c │ │ ├── wrap128.c │ │ └── xts128.c │ ├── o_dir.c │ ├── o_fips.c │ ├── o_fopen.c │ ├── o_init.c │ ├── o_str.c │ ├── o_time.c │ ├── objects │ │ ├── README │ │ ├── build.info │ │ ├── o_names.c │ │ ├── obj_dat.c │ │ ├── obj_dat.h │ │ ├── obj_dat.pl │ │ ├── obj_err.c │ │ ├── obj_lcl.h │ │ ├── obj_lib.c │ │ ├── obj_mac.num │ │ ├── obj_xref.c │ │ ├── obj_xref.h │ │ ├── obj_xref.txt │ │ ├── objects.pl │ │ ├── objects.txt │ │ └── objxref.pl │ ├── ocsp │ │ ├── build.info │ │ ├── ocsp_asn.c │ │ ├── ocsp_cl.c │ │ ├── ocsp_err.c │ │ ├── ocsp_ext.c │ │ ├── ocsp_ht.c │ │ ├── ocsp_lcl.h │ │ ├── ocsp_lib.c │ │ ├── ocsp_prn.c │ │ ├── ocsp_srv.c │ │ ├── ocsp_vfy.c │ │ └── v3_ocsp.c │ ├── pariscid.pl │ ├── pem │ │ ├── build.info │ │ ├── pem_all.c │ │ ├── pem_err.c │ │ ├── pem_info.c │ │ ├── pem_lib.c │ │ ├── pem_oth.c │ │ ├── pem_pk8.c │ │ ├── pem_pkey.c │ │ ├── pem_sign.c │ │ ├── pem_x509.c │ │ ├── pem_xaux.c │ │ └── pvkfmt.c │ ├── perlasm │ │ ├── README │ │ ├── arm-xlate.pl │ │ ├── cbc.pl │ │ ├── ppc-xlate.pl │ │ ├── sparcv9_modes.pl │ │ ├── x86_64-xlate.pl │ │ ├── x86asm.pl │ │ ├── x86gas.pl │ │ ├── x86masm.pl │ │ └── x86nasm.pl │ ├── pkcs12 │ │ ├── build.info │ │ ├── p12_add.c │ │ ├── p12_asn.c │ │ ├── p12_attr.c │ │ ├── p12_crpt.c │ │ ├── p12_crt.c │ │ ├── p12_decr.c │ │ ├── p12_init.c │ │ ├── p12_key.c │ │ ├── p12_kiss.c │ │ ├── p12_lcl.h │ │ ├── p12_mutl.c │ │ ├── p12_npas.c │ │ ├── p12_p8d.c │ │ ├── p12_p8e.c │ │ ├── p12_sbag.c │ │ ├── p12_utl.c │ │ └── pk12err.c │ ├── pkcs7 │ │ ├── bio_pk7.c │ │ ├── build.info │ │ ├── pk7_asn1.c │ │ ├── pk7_attr.c │ │ ├── pk7_dgst.c │ │ ├── pk7_doit.c │ │ ├── pk7_enc.c │ │ ├── pk7_lib.c │ │ ├── pk7_mime.c │ │ ├── pk7_smime.c │ │ └── pkcs7err.c │ ├── poly1305 │ │ ├── asm │ │ │ ├── poly1305-armv4.pl │ │ │ ├── poly1305-armv8.pl │ │ │ ├── poly1305-c64xplus.pl │ │ │ ├── poly1305-mips.pl │ │ │ ├── poly1305-ppc.pl │ │ │ ├── poly1305-ppcfp.pl │ │ │ ├── poly1305-s390x.pl │ │ │ ├── poly1305-sparcv9.pl │ │ │ ├── poly1305-x86.pl │ │ │ └── poly1305-x86_64.pl │ │ ├── build.info │ │ ├── poly1305.c │ │ └── poly1305_ieee754.c │ ├── ppc_arch.h │ ├── ppccap.c │ ├── ppccpuid.pl │ ├── rand │ │ ├── build.info │ │ ├── md_rand.c │ │ ├── rand_egd.c │ │ ├── rand_err.c │ │ ├── rand_lcl.h │ │ ├── rand_lib.c │ │ ├── rand_unix.c │ │ ├── rand_vms.c │ │ ├── rand_win.c │ │ └── randfile.c │ ├── rc2 │ │ ├── build.info │ │ ├── rc2_cbc.c │ │ ├── rc2_ecb.c │ │ ├── rc2_locl.h │ │ ├── rc2_skey.c │ │ ├── rc2cfb64.c │ │ ├── rc2ofb64.c │ │ └── tab.c │ ├── rc4 │ │ ├── asm │ │ │ ├── rc4-586.pl │ │ │ ├── rc4-c64xplus.pl │ │ │ ├── rc4-ia64.pl │ │ │ ├── rc4-md5-x86_64.pl │ │ │ ├── rc4-parisc.pl │ │ │ ├── rc4-s390x.pl │ │ │ └── rc4-x86_64.pl │ │ ├── build.info │ │ ├── rc4_enc.c │ │ ├── rc4_locl.h │ │ └── rc4_skey.c │ ├── rc5 │ │ ├── asm │ │ │ └── rc5-586.pl │ │ ├── build.info │ │ ├── rc5_ecb.c │ │ ├── rc5_enc.c │ │ ├── rc5_locl.h │ │ ├── rc5_skey.c │ │ ├── rc5cfb64.c │ │ └── rc5ofb64.c │ ├── ripemd │ │ ├── asm │ │ │ └── rmd-586.pl │ │ ├── build.info │ │ ├── rmd_dgst.c │ │ ├── rmd_locl.h │ │ ├── rmd_one.c │ │ └── rmdconst.h │ ├── rsa │ │ ├── build.info │ │ ├── rsa_ameth.c │ │ ├── rsa_asn1.c │ │ ├── rsa_chk.c │ │ ├── rsa_crpt.c │ │ ├── rsa_depr.c │ │ ├── rsa_err.c │ │ ├── rsa_gen.c │ │ ├── rsa_lib.c │ │ ├── rsa_locl.h │ │ ├── rsa_meth.c │ │ ├── rsa_none.c │ │ ├── rsa_null.c │ │ ├── rsa_oaep.c │ │ ├── rsa_ossl.c │ │ ├── rsa_pk1.c │ │ ├── rsa_pmeth.c │ │ ├── rsa_prn.c │ │ ├── rsa_pss.c │ │ ├── rsa_saos.c │ │ ├── rsa_sign.c │ │ ├── rsa_ssl.c │ │ ├── rsa_x931.c │ │ └── rsa_x931g.c │ ├── s390xcap.c │ ├── s390xcpuid.S │ ├── seed │ │ ├── build.info │ │ ├── seed.c │ │ ├── seed_cbc.c │ │ ├── seed_cfb.c │ │ ├── seed_ecb.c │ │ ├── seed_locl.h │ │ └── seed_ofb.c │ ├── sha │ │ ├── asm │ │ │ ├── sha1-586.pl │ │ │ ├── sha1-alpha.pl │ │ │ ├── sha1-armv4-large.pl │ │ │ ├── sha1-armv8.pl │ │ │ ├── sha1-c64xplus.pl │ │ │ ├── sha1-ia64.pl │ │ │ ├── sha1-mb-x86_64.pl │ │ │ ├── sha1-mips.pl │ │ │ ├── sha1-parisc.pl │ │ │ ├── sha1-ppc.pl │ │ │ ├── sha1-s390x.pl │ │ │ ├── sha1-sparcv9.pl │ │ │ ├── sha1-sparcv9a.pl │ │ │ ├── sha1-thumb.pl │ │ │ ├── sha1-x86_64.pl │ │ │ ├── sha256-586.pl │ │ │ ├── sha256-armv4.pl │ │ │ ├── sha256-c64xplus.pl │ │ │ ├── sha256-mb-x86_64.pl │ │ │ ├── sha512-586.pl │ │ │ ├── sha512-armv4.pl │ │ │ ├── sha512-armv8.pl │ │ │ ├── sha512-c64xplus.pl │ │ │ ├── sha512-ia64.pl │ │ │ ├── sha512-mips.pl │ │ │ ├── sha512-parisc.pl │ │ │ ├── sha512-ppc.pl │ │ │ ├── sha512-s390x.pl │ │ │ ├── sha512-sparcv9.pl │ │ │ ├── sha512-x86_64.pl │ │ │ └── sha512p8-ppc.pl │ │ ├── build.info │ │ ├── sha1_one.c │ │ ├── sha1dgst.c │ │ ├── sha256.c │ │ ├── sha512.c │ │ └── sha_locl.h │ ├── sparc_arch.h │ ├── sparccpuid.S │ ├── sparcv9cap.c │ ├── srp │ │ ├── build.info │ │ ├── srp_lib.c │ │ └── srp_vfy.c │ ├── stack │ │ ├── build.info │ │ └── stack.c │ ├── threads_none.c │ ├── threads_pthread.c │ ├── threads_win.c │ ├── ts │ │ ├── build.info │ │ ├── ts_asn1.c │ │ ├── ts_conf.c │ │ ├── ts_err.c │ │ ├── ts_lcl.h │ │ ├── ts_lib.c │ │ ├── ts_req_print.c │ │ ├── ts_req_utils.c │ │ ├── ts_rsp_print.c │ │ ├── ts_rsp_sign.c │ │ ├── ts_rsp_utils.c │ │ ├── ts_rsp_verify.c │ │ └── ts_verify_ctx.c │ ├── txt_db │ │ ├── build.info │ │ └── txt_db.c │ ├── ui │ │ ├── build.info │ │ ├── ui_err.c │ │ ├── ui_lib.c │ │ ├── ui_locl.h │ │ ├── ui_openssl.c │ │ └── ui_util.c │ ├── uid.c │ ├── vms_rms.h │ ├── whrlpool │ │ ├── asm │ │ │ ├── wp-mmx.pl │ │ │ └── wp-x86_64.pl │ │ ├── build.info │ │ ├── wp_block.c │ │ ├── wp_dgst.c │ │ └── wp_locl.h │ ├── x509 │ │ ├── build.info │ │ ├── by_dir.c │ │ ├── by_file.c │ │ ├── t_crl.c │ │ ├── t_req.c │ │ ├── t_x509.c │ │ ├── x509_att.c │ │ ├── x509_cmp.c │ │ ├── x509_d2.c │ │ ├── x509_def.c │ │ ├── x509_err.c │ │ ├── x509_ext.c │ │ ├── x509_lcl.h │ │ ├── x509_lu.c │ │ ├── x509_obj.c │ │ ├── x509_r2x.c │ │ ├── x509_req.c │ │ ├── x509_set.c │ │ ├── x509_trs.c │ │ ├── x509_txt.c │ │ ├── x509_v3.c │ │ ├── x509_vfy.c │ │ ├── x509_vpm.c │ │ ├── x509cset.c │ │ ├── x509name.c │ │ ├── x509rset.c │ │ ├── x509spki.c │ │ ├── x509type.c │ │ ├── x_all.c │ │ ├── x_attrib.c │ │ ├── x_crl.c │ │ ├── x_exten.c │ │ ├── x_name.c │ │ ├── x_pubkey.c │ │ ├── x_req.c │ │ ├── x_x509.c │ │ └── x_x509a.c │ ├── x509v3 │ │ ├── build.info │ │ ├── ext_dat.h │ │ ├── pcy_cache.c │ │ ├── pcy_data.c │ │ ├── pcy_int.h │ │ ├── pcy_lib.c │ │ ├── pcy_map.c │ │ ├── pcy_node.c │ │ ├── pcy_tree.c │ │ ├── tabtest.c │ │ ├── v3_addr.c │ │ ├── v3_akey.c │ │ ├── v3_akeya.c │ │ ├── v3_alt.c │ │ ├── v3_asid.c │ │ ├── v3_bcons.c │ │ ├── v3_bitst.c │ │ ├── v3_conf.c │ │ ├── v3_cpols.c │ │ ├── v3_crld.c │ │ ├── v3_enum.c │ │ ├── v3_extku.c │ │ ├── v3_genn.c │ │ ├── v3_ia5.c │ │ ├── v3_info.c │ │ ├── v3_int.c │ │ ├── v3_lib.c │ │ ├── v3_ncons.c │ │ ├── v3_pci.c │ │ ├── v3_pcia.c │ │ ├── v3_pcons.c │ │ ├── v3_pku.c │ │ ├── v3_pmaps.c │ │ ├── v3_prn.c │ │ ├── v3_purp.c │ │ ├── v3_skey.c │ │ ├── v3_sxnet.c │ │ ├── v3_tlsf.c │ │ ├── v3_utl.c │ │ ├── v3conf.c │ │ ├── v3err.c │ │ └── v3prin.c │ ├── x86_64cpuid.pl │ └── x86cpuid.pl ├── demos │ ├── README │ ├── bio │ │ ├── Makefile │ │ ├── README │ │ ├── accept.cnf │ │ ├── client-arg.c │ │ ├── client-conf.c │ │ ├── cmod.cnf │ │ ├── connect.cnf │ │ ├── descrip.mms │ │ ├── intca.pem │ │ ├── root.pem │ │ ├── saccept.c │ │ ├── sconnect.c │ │ ├── server-arg.c │ │ ├── server-cmod.c │ │ ├── server-conf.c │ │ ├── server-ec.pem │ │ ├── server.pem │ │ ├── shared.opt │ │ └── static.opt │ ├── certs │ │ ├── README │ │ ├── apps │ │ │ ├── apps.cnf │ │ │ ├── ckey.pem │ │ │ ├── intkey.pem │ │ │ ├── mkacerts.sh │ │ │ ├── mkxcerts.sh │ │ │ ├── rootkey.pem │ │ │ ├── skey.pem │ │ │ └── skey2.pem │ │ ├── ca.cnf │ │ ├── mkcerts.sh │ │ ├── ocspquery.sh │ │ └── ocsprun.sh │ ├── cms │ │ ├── cacert.pem │ │ ├── cakey.pem │ │ ├── cms_comp.c │ │ ├── cms_ddec.c │ │ ├── cms_dec.c │ │ ├── cms_denc.c │ │ ├── cms_enc.c │ │ ├── cms_sign.c │ │ ├── cms_sign2.c │ │ ├── cms_uncomp.c │ │ ├── cms_ver.c │ │ ├── comp.txt │ │ ├── encr.txt │ │ ├── sign.txt │ │ ├── signer.pem │ │ └── signer2.pem │ ├── evp │ │ ├── Makefile │ │ ├── aesccm.c │ │ └── aesgcm.c │ ├── pkcs12 │ │ ├── README │ │ ├── pkread.c │ │ └── pkwrite.c │ └── smime │ │ ├── cacert.pem │ │ ├── cakey.pem │ │ ├── encr.txt │ │ ├── sign.txt │ │ ├── signer.pem │ │ ├── signer2.pem │ │ ├── smdec.c │ │ ├── smenc.c │ │ ├── smsign.c │ │ ├── smsign2.c │ │ └── smver.c ├── doc │ ├── HOWTO │ │ ├── certificates.txt │ │ ├── keys.txt │ │ └── proxy_certificates.txt │ ├── README │ ├── apps │ │ ├── CA.pl.pod │ │ ├── asn1parse.pod │ │ ├── ca.pod │ │ ├── ciphers.pod │ │ ├── cms.pod │ │ ├── config.pod │ │ ├── crl.pod │ │ ├── crl2pkcs7.pod │ │ ├── dgst.pod │ │ ├── dhparam.pod │ │ ├── dsa.pod │ │ ├── dsaparam.pod │ │ ├── ec.pod │ │ ├── ecparam.pod │ │ ├── enc.pod │ │ ├── engine.pod │ │ ├── errstr.pod │ │ ├── gendsa.pod │ │ ├── genpkey.pod │ │ ├── genrsa.pod │ │ ├── list.pod │ │ ├── nseq.pod │ │ ├── ocsp.pod │ │ ├── openssl.pod │ │ ├── passwd.pod │ │ ├── pkcs12.pod │ │ ├── pkcs7.pod │ │ ├── pkcs8.pod │ │ ├── pkey.pod │ │ ├── pkeyparam.pod │ │ ├── pkeyutl.pod │ │ ├── rand.pod │ │ ├── rehash.pod │ │ ├── req.pod │ │ ├── rsa.pod │ │ ├── rsautl.pod │ │ ├── s_client.pod │ │ ├── s_server.pod │ │ ├── s_time.pod │ │ ├── sess_id.pod │ │ ├── smime.pod │ │ ├── speed.pod │ │ ├── spkac.pod │ │ ├── ts.pod │ │ ├── tsget.pod │ │ ├── verify.pod │ │ ├── version.pod │ │ ├── x509.pod │ │ └── x509v3_config.pod │ ├── crypto │ │ ├── ASN1_INTEGER_get_int64.pod │ │ ├── ASN1_OBJECT_new.pod │ │ ├── ASN1_STRING_length.pod │ │ ├── ASN1_STRING_new.pod │ │ ├── ASN1_STRING_print_ex.pod │ │ ├── ASN1_TIME_set.pod │ │ ├── ASN1_TYPE_get.pod │ │ ├── ASN1_generate_nconf.pod │ │ ├── ASYNC_WAIT_CTX_new.pod │ │ ├── ASYNC_start_job.pod │ │ ├── BF_encrypt.pod │ │ ├── BIO_ADDR.pod │ │ ├── BIO_ADDRINFO.pod │ │ ├── BIO_connect.pod │ │ ├── BIO_ctrl.pod │ │ ├── BIO_f_base64.pod │ │ ├── BIO_f_buffer.pod │ │ ├── BIO_f_cipher.pod │ │ ├── BIO_f_md.pod │ │ ├── BIO_f_null.pod │ │ ├── BIO_f_ssl.pod │ │ ├── BIO_find_type.pod │ │ ├── BIO_get_data.pod │ │ ├── BIO_get_ex_new_index.pod │ │ ├── BIO_meth_new.pod │ │ ├── BIO_new.pod │ │ ├── BIO_new_CMS.pod │ │ ├── BIO_parse_hostserv.pod │ │ ├── BIO_printf.pod │ │ ├── BIO_push.pod │ │ ├── BIO_read.pod │ │ ├── BIO_s_accept.pod │ │ ├── BIO_s_bio.pod │ │ ├── BIO_s_connect.pod │ │ ├── BIO_s_fd.pod │ │ ├── BIO_s_file.pod │ │ ├── BIO_s_mem.pod │ │ ├── BIO_s_null.pod │ │ ├── BIO_s_socket.pod │ │ ├── BIO_set_callback.pod │ │ ├── BIO_should_retry.pod │ │ ├── BN_BLINDING_new.pod │ │ ├── BN_CTX_new.pod │ │ ├── BN_CTX_start.pod │ │ ├── BN_add.pod │ │ ├── BN_add_word.pod │ │ ├── BN_bn2bin.pod │ │ ├── BN_cmp.pod │ │ ├── BN_copy.pod │ │ ├── BN_generate_prime.pod │ │ ├── BN_mod_inverse.pod │ │ ├── BN_mod_mul_montgomery.pod │ │ ├── BN_mod_mul_reciprocal.pod │ │ ├── BN_new.pod │ │ ├── BN_num_bytes.pod │ │ ├── BN_rand.pod │ │ ├── BN_set_bit.pod │ │ ├── BN_swap.pod │ │ ├── BN_zero.pod │ │ ├── BUF_MEM_new.pod │ │ ├── CMS_add0_cert.pod │ │ ├── CMS_add1_recipient_cert.pod │ │ ├── CMS_add1_signer.pod │ │ ├── CMS_compress.pod │ │ ├── CMS_decrypt.pod │ │ ├── CMS_encrypt.pod │ │ ├── CMS_final.pod │ │ ├── CMS_get0_RecipientInfos.pod │ │ ├── CMS_get0_SignerInfos.pod │ │ ├── CMS_get0_type.pod │ │ ├── CMS_get1_ReceiptRequest.pod │ │ ├── CMS_sign.pod │ │ ├── CMS_sign_receipt.pod │ │ ├── CMS_uncompress.pod │ │ ├── CMS_verify.pod │ │ ├── CMS_verify_receipt.pod │ │ ├── CONF_modules_free.pod │ │ ├── CONF_modules_load_file.pod │ │ ├── CRYPTO_THREAD_run_once.pod │ │ ├── CRYPTO_get_ex_new_index.pod │ │ ├── CTLOG_STORE_get0_log_by_id.pod │ │ ├── CTLOG_STORE_new.pod │ │ ├── CTLOG_new.pod │ │ ├── CT_POLICY_EVAL_CTX_new.pod │ │ ├── DEFINE_STACK_OF.pod │ │ ├── DES_random_key.pod │ │ ├── DH_generate_key.pod │ │ ├── DH_generate_parameters.pod │ │ ├── DH_get0_pqg.pod │ │ ├── DH_get_1024_160.pod │ │ ├── DH_meth_new.pod │ │ ├── DH_new.pod │ │ ├── DH_set_method.pod │ │ ├── DH_size.pod │ │ ├── DSA_SIG_new.pod │ │ ├── DSA_do_sign.pod │ │ ├── DSA_dup_DH.pod │ │ ├── DSA_generate_key.pod │ │ ├── DSA_generate_parameters.pod │ │ ├── DSA_get0_pqg.pod │ │ ├── DSA_meth_new.pod │ │ ├── DSA_new.pod │ │ ├── DSA_set_method.pod │ │ ├── DSA_sign.pod │ │ ├── DSA_size.pod │ │ ├── ECDSA_SIG_new.pod │ │ ├── ECPKParameters_print.pod │ │ ├── EC_GFp_simple_method.pod │ │ ├── EC_GROUP_copy.pod │ │ ├── EC_GROUP_new.pod │ │ ├── EC_KEY_get_enc_flags.pod │ │ ├── EC_KEY_new.pod │ │ ├── EC_POINT_add.pod │ │ ├── EC_POINT_new.pod │ │ ├── ENGINE_add.pod │ │ ├── ERR_GET_LIB.pod │ │ ├── ERR_clear_error.pod │ │ ├── ERR_error_string.pod │ │ ├── ERR_get_error.pod │ │ ├── ERR_load_crypto_strings.pod │ │ ├── ERR_load_strings.pod │ │ ├── ERR_print_errors.pod │ │ ├── ERR_put_error.pod │ │ ├── ERR_remove_state.pod │ │ ├── ERR_set_mark.pod │ │ ├── EVP_BytesToKey.pod │ │ ├── EVP_CIPHER_CTX_get_cipher_data.pod │ │ ├── EVP_CIPHER_meth_new.pod │ │ ├── EVP_DigestInit.pod │ │ ├── EVP_DigestSignInit.pod │ │ ├── EVP_DigestVerifyInit.pod │ │ ├── EVP_EncodeInit.pod │ │ ├── EVP_EncryptInit.pod │ │ ├── EVP_MD_meth_new.pod │ │ ├── EVP_OpenInit.pod │ │ ├── EVP_PKEY_CTX_ctrl.pod │ │ ├── EVP_PKEY_CTX_new.pod │ │ ├── EVP_PKEY_CTX_set_hkdf_md.pod │ │ ├── EVP_PKEY_CTX_set_tls1_prf_md.pod │ │ ├── EVP_PKEY_cmp.pod │ │ ├── EVP_PKEY_decrypt.pod │ │ ├── EVP_PKEY_derive.pod │ │ ├── EVP_PKEY_encrypt.pod │ │ ├── EVP_PKEY_get_default_digest_nid.pod │ │ ├── EVP_PKEY_keygen.pod │ │ ├── EVP_PKEY_new.pod │ │ ├── EVP_PKEY_print_private.pod │ │ ├── EVP_PKEY_set1_RSA.pod │ │ ├── EVP_PKEY_sign.pod │ │ ├── EVP_PKEY_verify.pod │ │ ├── EVP_PKEY_verify_recover.pod │ │ ├── EVP_SealInit.pod │ │ ├── EVP_SignInit.pod │ │ ├── EVP_VerifyInit.pod │ │ ├── HMAC.pod │ │ ├── MD5.pod │ │ ├── MDC2_Init.pod │ │ ├── OBJ_nid2obj.pod │ │ ├── OCSP_REQUEST_new.pod │ │ ├── OCSP_cert_to_id.pod │ │ ├── OCSP_request_add1_nonce.pod │ │ ├── OCSP_resp_find_status.pod │ │ ├── OCSP_response_status.pod │ │ ├── OCSP_sendreq_new.pod │ │ ├── OPENSSL_Applink.pod │ │ ├── OPENSSL_LH_COMPFUNC.pod │ │ ├── OPENSSL_LH_stats.pod │ │ ├── OPENSSL_VERSION_NUMBER.pod │ │ ├── OPENSSL_config.pod │ │ ├── OPENSSL_ia32cap.pod │ │ ├── OPENSSL_init_crypto.pod │ │ ├── OPENSSL_instrument_bus.pod │ │ ├── OPENSSL_load_builtin_modules.pod │ │ ├── OPENSSL_malloc.pod │ │ ├── OPENSSL_secure_malloc.pod │ │ ├── OpenSSL_add_all_algorithms.pod │ │ ├── PEM_read.pod │ │ ├── PEM_read_CMS.pod │ │ ├── PEM_read_bio_PrivateKey.pod │ │ ├── PEM_write_bio_CMS_stream.pod │ │ ├── PEM_write_bio_PKCS7_stream.pod │ │ ├── PKCS12_create.pod │ │ ├── PKCS12_newpass.pod │ │ ├── PKCS12_parse.pod │ │ ├── PKCS5_PBKDF2_HMAC.pod │ │ ├── PKCS7_decrypt.pod │ │ ├── PKCS7_encrypt.pod │ │ ├── PKCS7_sign.pod │ │ ├── PKCS7_sign_add_signer.pod │ │ ├── PKCS7_verify.pod │ │ ├── RAND_add.pod │ │ ├── RAND_bytes.pod │ │ ├── RAND_cleanup.pod │ │ ├── RAND_egd.pod │ │ ├── RAND_load_file.pod │ │ ├── RAND_set_rand_method.pod │ │ ├── RC4_set_key.pod │ │ ├── RIPEMD160_Init.pod │ │ ├── RSA_blinding_on.pod │ │ ├── RSA_check_key.pod │ │ ├── RSA_generate_key.pod │ │ ├── RSA_get0_key.pod │ │ ├── RSA_meth_new.pod │ │ ├── RSA_new.pod │ │ ├── RSA_padding_add_PKCS1_type_1.pod │ │ ├── RSA_print.pod │ │ ├── RSA_private_encrypt.pod │ │ ├── RSA_public_encrypt.pod │ │ ├── RSA_set_method.pod │ │ ├── RSA_sign.pod │ │ ├── RSA_sign_ASN1_OCTET_STRING.pod │ │ ├── RSA_size.pod │ │ ├── SCT_new.pod │ │ ├── SCT_print.pod │ │ ├── SCT_validate.pod │ │ ├── SHA256_Init.pod │ │ ├── SMIME_read_CMS.pod │ │ ├── SMIME_read_PKCS7.pod │ │ ├── SMIME_write_CMS.pod │ │ ├── SMIME_write_PKCS7.pod │ │ ├── UI_STRING.pod │ │ ├── UI_create_method.pod │ │ ├── UI_new.pod │ │ ├── X509V3_get_d2i.pod │ │ ├── X509_ALGOR_dup.pod │ │ ├── X509_CRL_get0_by_serial.pod │ │ ├── X509_EXTENSION_set_object.pod │ │ ├── X509_LOOKUP_hash_dir.pod │ │ ├── X509_NAME_ENTRY_get_object.pod │ │ ├── X509_NAME_add_entry_by_txt.pod │ │ ├── X509_NAME_get0_der.pod │ │ ├── X509_NAME_get_index_by_NID.pod │ │ ├── X509_NAME_print_ex.pod │ │ ├── X509_PUBKEY_new.pod │ │ ├── X509_SIG_get0.pod │ │ ├── X509_STORE_CTX_get_error.pod │ │ ├── X509_STORE_CTX_new.pod │ │ ├── X509_STORE_CTX_set_verify_cb.pod │ │ ├── X509_STORE_get0_param.pod │ │ ├── X509_STORE_new.pod │ │ ├── X509_STORE_set_verify_cb_func.pod │ │ ├── X509_VERIFY_PARAM_set_flags.pod │ │ ├── X509_check_ca.pod │ │ ├── X509_check_host.pod │ │ ├── X509_check_issued.pod │ │ ├── X509_digest.pod │ │ ├── X509_dup.pod │ │ ├── X509_get0_signature.pod │ │ ├── X509_get0_uids.pod │ │ ├── X509_get_extension_flags.pod │ │ ├── X509_get_notBefore.pod │ │ ├── X509_get_pubkey.pod │ │ ├── X509_get_serialNumber.pod │ │ ├── X509_get_subject_name.pod │ │ ├── X509_get_version.pod │ │ ├── X509_new.pod │ │ ├── X509_sign.pod │ │ ├── X509_verify_cert.pod │ │ ├── X509v3_get_ext_by_NID.pod │ │ ├── bio.pod │ │ ├── crypto.pod │ │ ├── ct.pod │ │ ├── d2i_DHparams.pod │ │ ├── d2i_Netscape_RSA.pod │ │ ├── d2i_PKCS8PrivateKey_bio.pod │ │ ├── d2i_PrivateKey.pod │ │ ├── d2i_X509.pod │ │ ├── des_modes.pod │ │ ├── evp.pod │ │ ├── i2d_CMS_bio_stream.pod │ │ ├── i2d_PKCS7_bio_stream.pod │ │ ├── i2d_re_X509_tbs.pod │ │ ├── o2i_SCT_LIST.pod │ │ └── x509.pod │ ├── dir-locals.example.el │ ├── fingerprints.txt │ ├── man3 │ │ └── SSL_CTX_set_tlsext_servername_callback.pod │ ├── openssl-c-indent.el │ └── ssl │ │ ├── DTLSv1_listen.pod │ │ ├── OPENSSL_init_ssl.pod │ │ ├── SSL_CIPHER_get_name.pod │ │ ├── SSL_COMP_add_compression_method.pod │ │ ├── SSL_CONF_CTX_new.pod │ │ ├── SSL_CONF_CTX_set1_prefix.pod │ │ ├── SSL_CONF_CTX_set_flags.pod │ │ ├── SSL_CONF_CTX_set_ssl_ctx.pod │ │ ├── SSL_CONF_cmd.pod │ │ ├── SSL_CONF_cmd_argv.pod │ │ ├── SSL_CTX_add1_chain_cert.pod │ │ ├── SSL_CTX_add_extra_chain_cert.pod │ │ ├── SSL_CTX_add_session.pod │ │ ├── SSL_CTX_config.pod │ │ ├── SSL_CTX_ctrl.pod │ │ ├── SSL_CTX_dane_enable.pod │ │ ├── SSL_CTX_flush_sessions.pod │ │ ├── SSL_CTX_free.pod │ │ ├── SSL_CTX_get0_param.pod │ │ ├── SSL_CTX_get_verify_mode.pod │ │ ├── SSL_CTX_has_client_custom_ext.pod │ │ ├── SSL_CTX_load_verify_locations.pod │ │ ├── SSL_CTX_new.pod │ │ ├── SSL_CTX_sess_number.pod │ │ ├── SSL_CTX_sess_set_cache_size.pod │ │ ├── SSL_CTX_sess_set_get_cb.pod │ │ ├── SSL_CTX_sessions.pod │ │ ├── SSL_CTX_set1_curves.pod │ │ ├── SSL_CTX_set1_sigalgs.pod │ │ ├── SSL_CTX_set1_verify_cert_store.pod │ │ ├── SSL_CTX_set_alpn_select_cb.pod │ │ ├── SSL_CTX_set_cert_cb.pod │ │ ├── SSL_CTX_set_cert_store.pod │ │ ├── SSL_CTX_set_cert_verify_callback.pod │ │ ├── SSL_CTX_set_cipher_list.pod │ │ ├── SSL_CTX_set_client_CA_list.pod │ │ ├── SSL_CTX_set_client_cert_cb.pod │ │ ├── SSL_CTX_set_ct_validation_callback.pod │ │ ├── SSL_CTX_set_ctlog_list_file.pod │ │ ├── SSL_CTX_set_default_passwd_cb.pod │ │ ├── SSL_CTX_set_ex_data.pod │ │ ├── SSL_CTX_set_generate_session_id.pod │ │ ├── SSL_CTX_set_info_callback.pod │ │ ├── SSL_CTX_set_max_cert_list.pod │ │ ├── SSL_CTX_set_min_proto_version.pod │ │ ├── SSL_CTX_set_mode.pod │ │ ├── SSL_CTX_set_msg_callback.pod │ │ ├── SSL_CTX_set_options.pod │ │ ├── SSL_CTX_set_psk_client_callback.pod │ │ ├── SSL_CTX_set_quiet_shutdown.pod │ │ ├── SSL_CTX_set_read_ahead.pod │ │ ├── SSL_CTX_set_security_level.pod │ │ ├── SSL_CTX_set_session_cache_mode.pod │ │ ├── SSL_CTX_set_session_id_context.pod │ │ ├── SSL_CTX_set_split_send_fragment.pod │ │ ├── SSL_CTX_set_ssl_version.pod │ │ ├── SSL_CTX_set_timeout.pod │ │ ├── SSL_CTX_set_tlsext_status_cb.pod │ │ ├── SSL_CTX_set_tlsext_ticket_key_cb.pod │ │ ├── SSL_CTX_set_tmp_dh_callback.pod │ │ ├── SSL_CTX_set_verify.pod │ │ ├── SSL_CTX_use_certificate.pod │ │ ├── SSL_CTX_use_psk_identity_hint.pod │ │ ├── SSL_CTX_use_serverinfo.pod │ │ ├── SSL_SESSION_free.pod │ │ ├── SSL_SESSION_get0_cipher.pod │ │ ├── SSL_SESSION_get0_hostname.pod │ │ ├── SSL_SESSION_get0_id_context.pod │ │ ├── SSL_SESSION_get0_peer.pod │ │ ├── SSL_SESSION_get_compress_id.pod │ │ ├── SSL_SESSION_get_ex_data.pod │ │ ├── SSL_SESSION_get_protocol_version.pod │ │ ├── SSL_SESSION_get_time.pod │ │ ├── SSL_SESSION_has_ticket.pod │ │ ├── SSL_SESSION_print.pod │ │ ├── SSL_SESSION_set1_id.pod │ │ ├── SSL_accept.pod │ │ ├── SSL_alert_type_string.pod │ │ ├── SSL_check_chain.pod │ │ ├── SSL_clear.pod │ │ ├── SSL_connect.pod │ │ ├── SSL_do_handshake.pod │ │ ├── SSL_extension_supported.pod │ │ ├── SSL_free.pod │ │ ├── SSL_get0_peer_scts.pod │ │ ├── SSL_get_SSL_CTX.pod │ │ ├── SSL_get_all_async_fds.pod │ │ ├── SSL_get_ciphers.pod │ │ ├── SSL_get_client_CA_list.pod │ │ ├── SSL_get_client_random.pod │ │ ├── SSL_get_current_cipher.pod │ │ ├── SSL_get_default_timeout.pod │ │ ├── SSL_get_error.pod │ │ ├── SSL_get_extms_support.pod │ │ ├── SSL_get_fd.pod │ │ ├── SSL_get_peer_cert_chain.pod │ │ ├── SSL_get_peer_certificate.pod │ │ ├── SSL_get_psk_identity.pod │ │ ├── SSL_get_rbio.pod │ │ ├── SSL_get_session.pod │ │ ├── SSL_get_shared_sigalgs.pod │ │ ├── SSL_get_verify_result.pod │ │ ├── SSL_get_version.pod │ │ ├── SSL_library_init.pod │ │ ├── SSL_load_client_CA_file.pod │ │ ├── SSL_new.pod │ │ ├── SSL_pending.pod │ │ ├── SSL_read.pod │ │ ├── SSL_rstate_string.pod │ │ ├── SSL_session_reused.pod │ │ ├── SSL_set1_host.pod │ │ ├── SSL_set_bio.pod │ │ ├── SSL_set_connect_state.pod │ │ ├── SSL_set_fd.pod │ │ ├── SSL_set_session.pod │ │ ├── SSL_set_shutdown.pod │ │ ├── SSL_set_verify_result.pod │ │ ├── SSL_shutdown.pod │ │ ├── SSL_state_string.pod │ │ ├── SSL_want.pod │ │ ├── SSL_write.pod │ │ ├── d2i_SSL_SESSION.pod │ │ └── ssl.pod ├── e_os.h ├── engines │ ├── afalg │ │ ├── build.info │ │ ├── e_afalg.c │ │ ├── e_afalg.ec │ │ ├── e_afalg.h │ │ ├── e_afalg_err.c │ │ └── e_afalg_err.h │ ├── asm │ │ ├── e_padlock-x86.pl │ │ └── e_padlock-x86_64.pl │ ├── build.info │ ├── e_capi.c │ ├── e_capi.ec │ ├── e_capi_err.c │ ├── e_capi_err.h │ ├── e_chil.c │ ├── e_chil.ec │ ├── e_chil_err.c │ ├── e_chil_err.h │ ├── e_dasync.c │ ├── e_dasync.ec │ ├── e_dasync_err.c │ ├── e_dasync_err.h │ ├── e_ossltest.c │ ├── e_ossltest.ec │ ├── e_ossltest_err.c │ ├── e_ossltest_err.h │ ├── e_padlock.c │ ├── e_padlock.ec │ └── vendor_defns │ │ └── hwcryptohook.h ├── external │ └── perl │ │ ├── Downloaded.txt │ │ ├── Text-Template-1.46 │ │ ├── Artistic │ │ ├── COPYING │ │ ├── INSTALL │ │ ├── MANIFEST │ │ ├── META.json │ │ ├── META.yml │ │ ├── Makefile.PL │ │ ├── README │ │ ├── lib │ │ │ └── Text │ │ │ │ ├── Template.pm │ │ │ │ └── Template │ │ │ │ └── Preprocess.pm │ │ └── t │ │ │ ├── 00-version.t │ │ │ ├── 01-basic.t │ │ │ ├── 02-hash.t │ │ │ ├── 03-out.t │ │ │ ├── 04-safe.t │ │ │ ├── 05-safe2.t │ │ │ ├── 06-ofh.t │ │ │ ├── 07-safe3.t │ │ │ ├── 08-exported.t │ │ │ ├── 09-error.t │ │ │ ├── 10-delimiters.t │ │ │ ├── 11-prepend.t │ │ │ ├── 12-preprocess.t │ │ │ ├── 13-taint.t │ │ │ └── 14-broken.t │ │ └── transfer │ │ └── Text │ │ └── Template.pm ├── fuzz │ ├── README.md │ ├── asn1.c │ ├── asn1parse.c │ ├── bignum.c │ ├── bndiv.c │ ├── build.info │ ├── cms.c │ ├── conf.c │ ├── crl.c │ ├── ct.c │ ├── driver.c │ ├── fuzzer.h │ ├── helper.py │ ├── server.c │ ├── test-corpus.c │ └── x509.c ├── include │ ├── internal │ │ ├── asn1t.h │ │ ├── bio.h │ │ ├── comp.h │ │ ├── conf.h │ │ ├── constant_time_locl.h │ │ ├── dane.h │ │ ├── dso.h │ │ ├── err.h │ │ ├── numbers.h │ │ ├── o_dir.h │ │ ├── o_str.h │ │ └── thread_once.h │ └── openssl │ │ ├── __DECC_INCLUDE_EPILOGUE.H │ │ ├── __DECC_INCLUDE_PROLOGUE.H │ │ ├── aes.h │ │ ├── asn1.h │ │ ├── asn1_mac.h │ │ ├── asn1t.h │ │ ├── async.h │ │ ├── bio.h │ │ ├── blowfish.h │ │ ├── bn.h │ │ ├── buffer.h │ │ ├── camellia.h │ │ ├── cast.h │ │ ├── cmac.h │ │ ├── cms.h │ │ ├── comp.h │ │ ├── conf.h │ │ ├── conf_api.h │ │ ├── crypto.h │ │ ├── ct.h │ │ ├── des.h │ │ ├── dh.h │ │ ├── dsa.h │ │ ├── dtls1.h │ │ ├── e_os2.h │ │ ├── ebcdic.h │ │ ├── ec.h │ │ ├── ecdh.h │ │ ├── ecdsa.h │ │ ├── engine.h │ │ ├── err.h │ │ ├── evp.h │ │ ├── hmac.h │ │ ├── idea.h │ │ ├── kdf.h │ │ ├── lhash.h │ │ ├── md2.h │ │ ├── md4.h │ │ ├── md5.h │ │ ├── mdc2.h │ │ ├── modes.h │ │ ├── obj_mac.h │ │ ├── objects.h │ │ ├── ocsp.h │ │ ├── opensslconf.h.in │ │ ├── opensslv.h │ │ ├── ossl_typ.h │ │ ├── pem.h │ │ ├── pem2.h │ │ ├── pkcs12.h │ │ ├── pkcs7.h │ │ ├── rand.h │ │ ├── rc2.h │ │ ├── rc4.h │ │ ├── rc5.h │ │ ├── ripemd.h │ │ ├── rsa.h │ │ ├── safestack.h │ │ ├── seed.h │ │ ├── sha.h │ │ ├── srp.h │ │ ├── srtp.h │ │ ├── ssl.h │ │ ├── ssl2.h │ │ ├── ssl3.h │ │ ├── stack.h │ │ ├── symhacks.h │ │ ├── tls1.h │ │ ├── ts.h │ │ ├── txt_db.h │ │ ├── ui.h │ │ ├── whrlpool.h │ │ ├── x509.h │ │ ├── x509_vfy.h │ │ └── x509v3.h ├── ms │ ├── applink.c │ ├── cmp.pl │ ├── segrenam.pl │ ├── tlhelp32.h │ ├── uplink-common.pl │ ├── uplink-ia64.pl │ ├── uplink-x86.pl │ ├── uplink-x86_64.pl │ ├── uplink.c │ └── uplink.h ├── os-dep │ └── haiku.h ├── ssl │ ├── bio_ssl.c │ ├── build.info │ ├── d1_lib.c │ ├── d1_msg.c │ ├── d1_srtp.c │ ├── methods.c │ ├── packet_locl.h │ ├── pqueue.c │ ├── record │ │ ├── README │ │ ├── dtls1_bitmap.c │ │ ├── rec_layer_d1.c │ │ ├── rec_layer_s3.c │ │ ├── record.h │ │ ├── record_locl.h │ │ ├── ssl3_buffer.c │ │ └── ssl3_record.c │ ├── s3_cbc.c │ ├── s3_enc.c │ ├── s3_lib.c │ ├── s3_msg.c │ ├── ssl_asn1.c │ ├── ssl_cert.c │ ├── ssl_ciph.c │ ├── ssl_conf.c │ ├── ssl_err.c │ ├── ssl_init.c │ ├── ssl_lib.c │ ├── ssl_locl.h │ ├── ssl_mcnf.c │ ├── ssl_rsa.c │ ├── ssl_sess.c │ ├── ssl_stat.c │ ├── ssl_txt.c │ ├── ssl_utst.c │ ├── statem │ │ ├── README │ │ ├── statem.c │ │ ├── statem.h │ │ ├── statem_clnt.c │ │ ├── statem_dtls.c │ │ ├── statem_lib.c │ │ ├── statem_locl.h │ │ └── statem_srvr.c │ ├── t1_enc.c │ ├── t1_ext.c │ ├── t1_lib.c │ ├── t1_reneg.c │ ├── t1_trce.c │ └── tls_srp.c ├── test │ ├── CAss.cnf │ ├── CAssdh.cnf │ ├── CAssdsa.cnf │ ├── CAssrsa.cnf │ ├── CAtsa.cnf │ ├── P1ss.cnf │ ├── P2ss.cnf │ ├── README │ ├── README.ssltest.md │ ├── Sssdsa.cnf │ ├── Sssrsa.cnf │ ├── Uss.cnf │ ├── aborttest.c │ ├── afalgtest.c │ ├── asynciotest.c │ ├── asynctest.c │ ├── bad_dtls_test.c │ ├── bftest.c │ ├── bio_enc_test.c │ ├── bioprinttest.c │ ├── bntest.c │ ├── build.info │ ├── casttest.c │ ├── certs │ │ ├── alt1-cert.pem │ │ ├── alt1-key.pem │ │ ├── alt2-cert.pem │ │ ├── alt2-key.pem │ │ ├── alt3-cert.pem │ │ ├── alt3-key.pem │ │ ├── bad-pc3-cert.pem │ │ ├── bad-pc3-key.pem │ │ ├── bad-pc4-cert.pem │ │ ├── bad-pc4-key.pem │ │ ├── bad-pc6-cert.pem │ │ ├── bad-pc6-key.pem │ │ ├── bad.key │ │ ├── bad.pem │ │ ├── badalt1-cert.pem │ │ ├── badalt1-key.pem │ │ ├── badalt10-cert.pem │ │ ├── badalt10-key.pem │ │ ├── badalt2-cert.pem │ │ ├── badalt2-key.pem │ │ ├── badalt3-cert.pem │ │ ├── badalt3-key.pem │ │ ├── badalt4-cert.pem │ │ ├── badalt4-key.pem │ │ ├── badalt5-cert.pem │ │ ├── badalt5-key.pem │ │ ├── badalt6-cert.pem │ │ ├── badalt6-key.pem │ │ ├── badalt7-cert.pem │ │ ├── badalt7-key.pem │ │ ├── badalt8-cert.pem │ │ ├── badalt8-key.pem │ │ ├── badalt9-cert.pem │ │ ├── badalt9-key.pem │ │ ├── ca+anyEKU.pem │ │ ├── ca+clientAuth.pem │ │ ├── ca+serverAuth.pem │ │ ├── ca-anyEKU.pem │ │ ├── ca-cert-768.pem │ │ ├── ca-cert-768i.pem │ │ ├── ca-cert-md5-any.pem │ │ ├── ca-cert-md5.pem │ │ ├── ca-cert.pem │ │ ├── ca-cert2.pem │ │ ├── ca-clientAuth.pem │ │ ├── ca-expired.pem │ │ ├── ca-key-768.pem │ │ ├── ca-key.pem │ │ ├── ca-key2.pem │ │ ├── ca-name2.pem │ │ ├── ca-nonbc.pem │ │ ├── ca-nonca.pem │ │ ├── ca-root2.pem │ │ ├── ca-serverAuth.pem │ │ ├── cca+anyEKU.pem │ │ ├── cca+clientAuth.pem │ │ ├── cca+serverAuth.pem │ │ ├── cca-anyEKU.pem │ │ ├── cca-cert.pem │ │ ├── cca-clientAuth.pem │ │ ├── cca-serverAuth.pem │ │ ├── croot+anyEKU.pem │ │ ├── croot+clientAuth.pem │ │ ├── croot+serverAuth.pem │ │ ├── croot-anyEKU.pem │ │ ├── croot-cert.pem │ │ ├── croot-clientAuth.pem │ │ ├── croot-serverAuth.pem │ │ ├── ee+clientAuth.pem │ │ ├── ee+serverAuth.pem │ │ ├── ee-cert-768.pem │ │ ├── ee-cert-768i.pem │ │ ├── ee-cert-md5.pem │ │ ├── ee-cert.pem │ │ ├── ee-cert2.pem │ │ ├── ee-client-chain.pem │ │ ├── ee-client.pem │ │ ├── ee-clientAuth.pem │ │ ├── ee-expired.pem │ │ ├── ee-key-768.pem │ │ ├── ee-key.pem │ │ ├── ee-name2.pem │ │ ├── ee-serverAuth.pem │ │ ├── embeddedSCTs1-key.pem │ │ ├── embeddedSCTs1.pem │ │ ├── embeddedSCTs1.sct │ │ ├── embeddedSCTs1_issuer.pem │ │ ├── embeddedSCTs3.pem │ │ ├── embeddedSCTs3.sct │ │ ├── embeddedSCTs3_issuer.pem │ │ ├── interCA.key │ │ ├── interCA.pem │ │ ├── leaf.key │ │ ├── leaf.pem │ │ ├── mkcert.sh │ │ ├── nca+anyEKU.pem │ │ ├── nca+serverAuth.pem │ │ ├── ncca-cert.pem │ │ ├── ncca-key.pem │ │ ├── ncca1-cert.pem │ │ ├── ncca1-key.pem │ │ ├── ncca2-cert.pem │ │ ├── ncca2-key.pem │ │ ├── ncca3-cert.pem │ │ ├── ncca3-key.pem │ │ ├── nroot+anyEKU.pem │ │ ├── nroot+serverAuth.pem │ │ ├── pathlen.pem │ │ ├── pc1-cert.pem │ │ ├── pc1-key.pem │ │ ├── pc2-cert.pem │ │ ├── pc2-key.pem │ │ ├── pc5-cert.pem │ │ ├── pc5-key.pem │ │ ├── root+anyEKU.pem │ │ ├── root+clientAuth.pem │ │ ├── root+serverAuth.pem │ │ ├── root-anyEKU.pem │ │ ├── root-cert-768.pem │ │ ├── root-cert-md5.pem │ │ ├── root-cert.pem │ │ ├── root-cert2.pem │ │ ├── root-clientAuth.pem │ │ ├── root-key-768.pem │ │ ├── root-key.pem │ │ ├── root-key2.pem │ │ ├── root-name2.pem │ │ ├── root-nonca.pem │ │ ├── root-noserver.pem │ │ ├── root-serverAuth.pem │ │ ├── root2+clientAuth.pem │ │ ├── root2+serverAuth.pem │ │ ├── root2-serverAuth.pem │ │ ├── rootCA.key │ │ ├── rootCA.pem │ │ ├── rootcert.pem │ │ ├── rootkey.pem │ │ ├── roots.pem │ │ ├── sca+anyEKU.pem │ │ ├── sca+clientAuth.pem │ │ ├── sca+serverAuth.pem │ │ ├── sca-anyEKU.pem │ │ ├── sca-cert.pem │ │ ├── sca-clientAuth.pem │ │ ├── sca-serverAuth.pem │ │ ├── server-trusted.pem │ │ ├── servercert.pem │ │ ├── serverkey.pem │ │ ├── setup.sh │ │ ├── sroot+anyEKU.pem │ │ ├── sroot+clientAuth.pem │ │ ├── sroot+serverAuth.pem │ │ ├── sroot-anyEKU.pem │ │ ├── sroot-cert.pem │ │ ├── sroot-clientAuth.pem │ │ ├── sroot-serverAuth.pem │ │ ├── subinterCA-ss.pem │ │ ├── subinterCA.key │ │ ├── subinterCA.pem │ │ ├── untrusted.pem │ │ ├── wrongcert.pem │ │ └── wrongkey.pem │ ├── cipherlist_test.c │ ├── clienthellotest.c │ ├── cms-examples.pl │ ├── constant_time_test.c │ ├── crltest.c │ ├── ct │ │ ├── log_list.conf │ │ └── tls1.sct │ ├── ct_test.c │ ├── d2i-tests │ │ ├── bad-cms.der │ │ ├── bad-int-pad0.der │ │ ├── bad-int-padminus1.der │ │ ├── bad_bio.der │ │ ├── bad_cert.der │ │ ├── bad_generalname.der │ │ ├── high_tag.der │ │ ├── int0.der │ │ ├── int1.der │ │ └── intminus1.der │ ├── d2i_test.c │ ├── danetest.c │ ├── danetest.in │ ├── danetest.pem │ ├── destest.c │ ├── dhtest.c │ ├── dsatest.c │ ├── dtlstest.c │ ├── dtlsv1listentest.c │ ├── ecdsatest.c │ ├── ectest.c │ ├── enginetest.c │ ├── evp_extra_test.c │ ├── evp_test.c │ ├── evptests.txt │ ├── exdatatest.c │ ├── exptest.c │ ├── generate_buildtest.pl │ ├── generate_ssl_tests.pl │ ├── gmdifftest.c │ ├── handshake_helper.c │ ├── handshake_helper.h │ ├── heartbeat_test.c │ ├── hmactest.c │ ├── ideatest.c │ ├── igetest.c │ ├── md2test.c │ ├── md4test.c │ ├── md5test.c │ ├── mdc2test.c │ ├── memleaktest.c │ ├── methtest.c │ ├── ocsp-tests │ │ ├── D1.ors │ │ ├── D1_Cert_EE.pem │ │ ├── D1_Issuer_ICA.pem │ │ ├── D2.ors │ │ ├── D2_Cert_ICA.pem │ │ ├── D2_Issuer_Root.pem │ │ ├── D3.ors │ │ ├── D3_Cert_EE.pem │ │ ├── D3_Issuer_Root.pem │ │ ├── ISDOSC_D1.ors │ │ ├── ISDOSC_D2.ors │ │ ├── ISDOSC_D3.ors │ │ ├── ISIC_D1_Issuer_ICA.pem │ │ ├── ISIC_D2_Issuer_Root.pem │ │ ├── ISIC_D3_Issuer_Root.pem │ │ ├── ISIC_ND1_Issuer_ICA.pem │ │ ├── ISIC_ND2_Issuer_Root.pem │ │ ├── ISIC_ND3_Issuer_Root.pem │ │ ├── ISOP_D1.ors │ │ ├── ISOP_D2.ors │ │ ├── ISOP_D3.ors │ │ ├── ISOP_ND1.ors │ │ ├── ISOP_ND2.ors │ │ ├── ISOP_ND3.ors │ │ ├── ND1.ors │ │ ├── ND1_Cert_EE.pem │ │ ├── ND1_Issuer_ICA.pem │ │ ├── ND2.ors │ │ ├── ND2_Cert_ICA.pem │ │ ├── ND2_Issuer_Root.pem │ │ ├── ND3.ors │ │ ├── ND3_Cert_EE.pem │ │ ├── ND3_Issuer_Root.pem │ │ ├── WIKH_D1.ors │ │ ├── WIKH_D2.ors │ │ ├── WIKH_D3.ors │ │ ├── WIKH_ND1.ors │ │ ├── WIKH_ND2.ors │ │ ├── WIKH_ND3.ors │ │ ├── WINH_D1.ors │ │ ├── WINH_D2.ors │ │ ├── WINH_D3.ors │ │ ├── WINH_ND1.ors │ │ ├── WINH_ND2.ors │ │ ├── WINH_ND3.ors │ │ ├── WKDOSC_D1.ors │ │ ├── WKDOSC_D2.ors │ │ ├── WKDOSC_D3.ors │ │ ├── WKIC_D1_Issuer_ICA.pem │ │ ├── WKIC_D2_Issuer_Root.pem │ │ ├── WKIC_D3_Issuer_Root.pem │ │ ├── WKIC_ND1_Issuer_ICA.pem │ │ ├── WKIC_ND2_Issuer_Root.pem │ │ ├── WKIC_ND3_Issuer_Root.pem │ │ ├── WRID_D1.ors │ │ ├── WRID_D2.ors │ │ ├── WRID_D3.ors │ │ ├── WRID_ND1.ors │ │ ├── WRID_ND2.ors │ │ ├── WRID_ND3.ors │ │ ├── WSNIC_D1_Issuer_ICA.pem │ │ ├── WSNIC_D2_Issuer_Root.pem │ │ ├── WSNIC_D3_Issuer_Root.pem │ │ ├── WSNIC_ND1_Issuer_ICA.pem │ │ ├── WSNIC_ND2_Issuer_Root.pem │ │ └── WSNIC_ND3_Issuer_Root.pem │ ├── p5_crpt2_test.c │ ├── packettest.c │ ├── pbelutest.c │ ├── pkcs7-1.pem │ ├── pkcs7.pem │ ├── pkits-test.pl │ ├── r160test.c │ ├── randtest.c │ ├── rc2test.c │ ├── rc4test.c │ ├── rc5test.c │ ├── recipes │ │ ├── 01-test_abort.t │ │ ├── 01-test_sanity.t │ │ ├── 01-test_symbol_presence.t │ │ ├── 02-test_ordinals.t │ │ ├── 03-test_exdata.t │ │ ├── 03-test_ui.t │ │ ├── 04-test_pem.t │ │ ├── 04-test_pem_data │ │ │ ├── NOTES │ │ │ ├── beermug.pem │ │ │ ├── cert-1023line.pem │ │ │ ├── cert-1024line.pem │ │ │ ├── cert-1025line.pem │ │ │ ├── cert-255line.pem │ │ │ ├── cert-256line.pem │ │ │ ├── cert-257line.pem │ │ │ ├── cert-blankline.pem │ │ │ ├── cert-comment.pem │ │ │ ├── cert-earlypad.pem │ │ │ ├── cert-extrapad.pem │ │ │ ├── cert-infixwhitespace.pem │ │ │ ├── cert-junk.pem │ │ │ ├── cert-leadingwhitespace.pem │ │ │ ├── cert-longline.pem │ │ │ ├── cert-misalignedpad.pem │ │ │ ├── cert-onecolumn.pem │ │ │ ├── cert-oneline.pem │ │ │ ├── cert-shortandlongline.pem │ │ │ ├── cert-shortline.pem │ │ │ ├── cert-threecolumn.pem │ │ │ ├── cert-trailingwhitespace.pem │ │ │ ├── cert.pem │ │ │ ├── csr.pem │ │ │ ├── dsa-1023line.pem │ │ │ ├── dsa-1024line.pem │ │ │ ├── dsa-1025line.pem │ │ │ ├── dsa-255line.pem │ │ │ ├── dsa-256line.pem │ │ │ ├── dsa-257line.pem │ │ │ ├── dsa-blankline.pem │ │ │ ├── dsa-comment.pem │ │ │ ├── dsa-corruptedheader.pem │ │ │ ├── dsa-corruptiv.pem │ │ │ ├── dsa-earlypad.pem │ │ │ ├── dsa-extrapad.pem │ │ │ ├── dsa-infixwhitespace.pem │ │ │ ├── dsa-junk.pem │ │ │ ├── dsa-leadingwhitespace.pem │ │ │ ├── dsa-longline.pem │ │ │ ├── dsa-misalignedpad.pem │ │ │ ├── dsa-onecolumn.pem │ │ │ ├── dsa-oneline.pem │ │ │ ├── dsa-onelineheader.pem │ │ │ ├── dsa-shortandlongline.pem │ │ │ ├── dsa-shortline.pem │ │ │ ├── dsa-threecolumn.pem │ │ │ ├── dsa-trailingwhitespace.pem │ │ │ ├── dsa.pem │ │ │ ├── dsaparam.pem │ │ │ ├── key.pem │ │ │ └── wellknown │ │ ├── 05-test_bf.t │ │ ├── 05-test_cast.t │ │ ├── 05-test_des.t │ │ ├── 05-test_hmac.t │ │ ├── 05-test_idea.t │ │ ├── 05-test_md2.t │ │ ├── 05-test_md4.t │ │ ├── 05-test_md5.t │ │ ├── 05-test_mdc2.t │ │ ├── 05-test_rand.t │ │ ├── 05-test_rc2.t │ │ ├── 05-test_rc4.t │ │ ├── 05-test_rc5.t │ │ ├── 05-test_rmd.t │ │ ├── 05-test_sha1.t │ │ ├── 05-test_sha256.t │ │ ├── 05-test_sha512.t │ │ ├── 05-test_wp.t │ │ ├── 10-test_bn.t │ │ ├── 10-test_exp.t │ │ ├── 15-test_dh.t │ │ ├── 15-test_dsa.t │ │ ├── 15-test_ec.t │ │ ├── 15-test_ecdsa.t │ │ ├── 15-test_genrsa.t │ │ ├── 15-test_rsa.t │ │ ├── 15-test_rsapss.t │ │ ├── 20-test_enc.t │ │ ├── 20-test_passwd.t │ │ ├── 25-test_crl.t │ │ ├── 25-test_d2i.t │ │ ├── 25-test_pkcs7.t │ │ ├── 25-test_req.t │ │ ├── 25-test_sid.t │ │ ├── 25-test_verify.t │ │ ├── 25-test_x509.t │ │ ├── 30-test_afalg.t │ │ ├── 30-test_engine.t │ │ ├── 30-test_evp.t │ │ ├── 30-test_evp_extra.t │ │ ├── 30-test_pbelu.t │ │ ├── 40-test_rehash.t │ │ ├── 60-test_x509_store.t │ │ ├── 70-test_asyncio.t │ │ ├── 70-test_bad_dtls.t │ │ ├── 70-test_clienthello.t │ │ ├── 70-test_packet.t │ │ ├── 70-test_sslcbcpadding.t │ │ ├── 70-test_sslcertstatus.t │ │ ├── 70-test_sslextension.t │ │ ├── 70-test_sslmessages.t │ │ ├── 70-test_sslrecords.t │ │ ├── 70-test_sslsessiontick.t │ │ ├── 70-test_sslskewith0p.t │ │ ├── 70-test_sslvertol.t │ │ ├── 70-test_tlsextms.t │ │ ├── 70-test_verify_extra.t │ │ ├── 80-test_ca.t │ │ ├── 80-test_cipherlist.t │ │ ├── 80-test_cms.t │ │ ├── 80-test_ct.t │ │ ├── 80-test_dane.t │ │ ├── 80-test_dtls.t │ │ ├── 80-test_dtlsv1listen.t │ │ ├── 80-test_ocsp.t │ │ ├── 80-test_pkcs12.t │ │ ├── 80-test_ssl_new.t │ │ ├── 80-test_ssl_old.t │ │ ├── 80-test_ssl_test_ctx.t │ │ ├── 80-test_sslcorrupt.t │ │ ├── 80-test_tsa.t │ │ ├── 80-test_x509aux.t │ │ ├── 90-test_async.t │ │ ├── 90-test_bio_enc.t │ │ ├── 90-test_bioprint.t │ │ ├── 90-test_constant_time.t │ │ ├── 90-test_fuzz.t │ │ ├── 90-test_gmdiff.t │ │ ├── 90-test_heartbeat.t │ │ ├── 90-test_ige.t │ │ ├── 90-test_memleak.t │ │ ├── 90-test_p5_crpt2.t │ │ ├── 90-test_secmem.t │ │ ├── 90-test_shlibload.t │ │ ├── 90-test_srp.t │ │ ├── 90-test_sslapi.t │ │ ├── 90-test_threads.t │ │ ├── 90-test_v3name.t │ │ ├── bc.pl │ │ └── tconversion.pl │ ├── rmdtest.c │ ├── rsa_test.c │ ├── run_tests.pl │ ├── sanitytest.c │ ├── secmemtest.c │ ├── serverinfo.pem │ ├── sha1test.c │ ├── sha256t.c │ ├── sha512t.c │ ├── shibboleth.pfx │ ├── shlibloadtest.c │ ├── smcont.txt │ ├── smime-certs │ │ ├── ca.cnf │ │ ├── mksmime-certs.sh │ │ ├── smdh.pem │ │ ├── smdsa1.pem │ │ ├── smdsa2.pem │ │ ├── smdsa3.pem │ │ ├── smdsap.pem │ │ ├── smec1.pem │ │ ├── smec2.pem │ │ ├── smroot.pem │ │ ├── smrsa1.pem │ │ ├── smrsa2.pem │ │ └── smrsa3.pem │ ├── srptest.c │ ├── ssl-tests │ │ ├── 01-simple.conf │ │ ├── 01-simple.conf.in │ │ ├── 02-protocol-version.conf │ │ ├── 02-protocol-version.conf.in │ │ ├── 03-custom_verify.conf │ │ ├── 03-custom_verify.conf.in │ │ ├── 04-client_auth.conf │ │ ├── 04-client_auth.conf.in │ │ ├── 05-sni.conf │ │ ├── 05-sni.conf.in │ │ ├── 06-sni-ticket.conf │ │ ├── 06-sni-ticket.conf.in │ │ ├── 07-dtls-protocol-version.conf │ │ ├── 07-dtls-protocol-version.conf.in │ │ ├── 08-npn.conf │ │ ├── 08-npn.conf.in │ │ ├── 09-alpn.conf │ │ ├── 09-alpn.conf.in │ │ ├── 10-resumption.conf │ │ ├── 10-resumption.conf.in │ │ ├── 11-dtls_resumption.conf │ │ ├── 11-dtls_resumption.conf.in │ │ ├── 12-ct.conf │ │ ├── 12-ct.conf.in │ │ ├── 13-fragmentation.conf │ │ ├── 13-fragmentation.conf.in │ │ ├── 14-curves.conf │ │ ├── 14-curves.conf.in │ │ ├── 15-certstatus.conf │ │ ├── 15-certstatus.conf.in │ │ ├── 16-certstatus.conf │ │ ├── 16-dtls-certstatus.conf │ │ ├── 16-dtls-certstatus.conf.in │ │ ├── 17-renegotiate.conf │ │ ├── 17-renegotiate.conf.in │ │ ├── 18-dtls-renegotiate.conf │ │ ├── 18-dtls-renegotiate.conf.in │ │ ├── protocol_version.pm │ │ └── ssltests_base.pm │ ├── ssl_test.c │ ├── ssl_test.tmpl │ ├── ssl_test_ctx.c │ ├── ssl_test_ctx.h │ ├── ssl_test_ctx_test.c │ ├── ssl_test_ctx_test.conf │ ├── sslapitest.c │ ├── sslcorrupttest.c │ ├── ssltest_old.c │ ├── ssltestlib.c │ ├── ssltestlib.h │ ├── test.cnf │ ├── testcrl.pem │ ├── testdsa.pem │ ├── testdsapub.pem │ ├── testec-p256.pem │ ├── testecpub-p256.pem │ ├── testlib │ │ └── OpenSSL │ │ │ ├── Test.pm │ │ │ └── Test │ │ │ ├── Simple.pm │ │ │ └── Utils.pm │ ├── testp7.pem │ ├── testreq2.pem │ ├── testrsa.pem │ ├── testrsapub.pem │ ├── testsid.pem │ ├── testutil.c │ ├── testutil.h │ ├── testx509.pem │ ├── threadstest.c │ ├── v3-cert1.pem │ ├── v3-cert2.pem │ ├── v3ext.c │ ├── v3nametest.c │ ├── verify_extra_test.c │ ├── wp_test.c │ └── x509aux.c ├── tools │ ├── build.info │ └── c_rehash.in └── util │ ├── TLSProxy │ ├── ClientHello.pm │ ├── Message.pm │ ├── NewSessionTicket.pm │ ├── Proxy.pm │ ├── Record.pm │ ├── ServerHello.pm │ └── ServerKeyExchange.pm │ ├── build.info │ ├── ck_errf.pl │ ├── copy.pl │ ├── dofile.pl │ ├── find-undoc-api.pl │ ├── find-unused-errs │ ├── fipslink.pl │ ├── incore │ ├── indent.pro │ ├── libcrypto.num │ ├── libssl.num │ ├── local_shlib.com.in │ ├── mkbuildinf.pl │ ├── mkcerts.sh │ ├── mkdef.pl │ ├── mkdir-p.pl │ ├── mkerr.pl │ ├── mkrc.pl │ ├── openssl-format-source │ ├── opensslwrap.sh │ ├── perl │ └── OpenSSL │ │ └── Util │ │ └── Pod.pm │ ├── point.sh │ ├── process_docs.pl │ ├── selftest.pl │ ├── shlib_wrap.sh.in │ ├── su-filter.pl │ ├── unlocal_shlib.com.in │ └── with_fallback.pm ├── readline ├── CHANGELOG ├── CHANGES ├── COPYING ├── INSTALL ├── MANIFEST ├── Makefile.in ├── NEWS ├── README ├── USAGE ├── aclocal.m4 ├── ansi_stdlib.h ├── bind.c ├── callback.c ├── chardefs.h ├── colors.c ├── colors.h ├── compat.c ├── complete.c ├── config.h.in ├── configure ├── configure.ac ├── display.c ├── doc │ ├── Makefile.in │ ├── fdl.texi │ ├── history.0 │ ├── history.3 │ ├── history.dvi │ ├── history.html │ ├── history.info │ ├── history.pdf │ ├── history.ps │ ├── history.texi │ ├── history_3.ps │ ├── hstech.texi │ ├── hsuser.texi │ ├── readline.0 │ ├── readline.3 │ ├── readline.dvi │ ├── readline.html │ ├── readline.info │ ├── readline.pdf │ ├── readline.ps │ ├── readline_3.ps │ ├── rlman.texi │ ├── rltech.texi │ ├── rluser.texi │ ├── rluserman.dvi │ ├── rluserman.html │ ├── rluserman.info │ ├── rluserman.pdf │ ├── rluserman.ps │ ├── rluserman.texi │ ├── texi2dvi │ ├── texi2html │ ├── texinfo.tex │ └── version.texi ├── emacs_keymap.c ├── examples │ ├── Inputrc │ ├── Makefile.in │ ├── autoconf │ │ ├── BASH_CHECK_LIB_TERMCAP │ │ ├── RL_LIB_READLINE_VERSION │ │ └── wi_LIB_READLINE │ ├── excallback.c │ ├── fileman.c │ ├── hist_erasedups.c │ ├── hist_purgecmd.c │ ├── histexamp.c │ ├── manexamp.c │ ├── readlinebuf.h │ ├── rl-callbacktest.c │ ├── rl-fgets.c │ ├── rl.c │ ├── rlbasic.c │ ├── rlcat.c │ ├── rlevent.c │ ├── rlfe │ │ ├── ChangeLog │ │ ├── Makefile.in │ │ ├── README │ │ ├── config.h.in │ │ ├── configure │ │ ├── configure.in │ │ ├── extern.h │ │ ├── os.h │ │ ├── pty.c │ │ ├── rlfe.c │ │ └── screen.h │ ├── rlptytest.c │ ├── rltest.c │ ├── rlversion.c │ └── rlwrap-0.30.tar.gz ├── funmap.c ├── histexpand.c ├── histfile.c ├── histlib.h ├── history.c ├── history.h ├── histsearch.c ├── input.c ├── isearch.c ├── keymaps.c ├── keymaps.h ├── kill.c ├── macro.c ├── mbutil.c ├── misc.c ├── nls.c ├── parens.c ├── parse-colors.c ├── parse-colors.h ├── patchlevel ├── posixdir.h ├── posixjmp.h ├── posixselect.h ├── posixstat.h ├── readline.c ├── readline.h ├── readline.pc.in ├── rlconf.h ├── rldefs.h ├── rlmbutil.h ├── rlprivate.h ├── rlshell.h ├── rlstdc.h ├── rltty.c ├── rltty.h ├── rltypedefs.h ├── rlwinsize.h ├── savestring.c ├── search.c ├── shell.c ├── shlib │ └── Makefile.in ├── signals.c ├── support │ ├── config.guess │ ├── config.rpath │ ├── config.sub │ ├── install.sh │ ├── mkdirs │ ├── mkdist │ ├── mkinstalldirs │ ├── shlib-install │ ├── shobj-conf │ └── wcwidth.c ├── tcap.h ├── terminal.c ├── text.c ├── tilde.c ├── tilde.h ├── undo.c ├── util.c ├── vi_keymap.c ├── vi_mode.c ├── xfree.c ├── xmalloc.c └── xmalloc.h ├── yaml ├── CMakeLists.txt ├── LICENSE ├── Makefile.am ├── Makefile.in ├── README ├── aclocal.m4 ├── config.h.in ├── config │ ├── compile │ ├── config.guess │ ├── config.sub │ ├── depcomp │ ├── install-sh │ ├── ltmain.sh │ ├── missing │ └── test-driver ├── configure ├── configure.ac ├── doc │ ├── doxygen.cfg │ └── html │ │ ├── annotated.html │ │ ├── bc_s.png │ │ ├── bdwn.png │ │ ├── classes.html │ │ ├── closed.png │ │ ├── doxygen.css │ │ ├── doxygen.png │ │ ├── dynsections.js │ │ ├── files.html │ │ ├── ftv2blank.png │ │ ├── ftv2cl.png │ │ ├── ftv2doc.png │ │ ├── ftv2folderclosed.png │ │ ├── ftv2folderopen.png │ │ ├── ftv2lastnode.png │ │ ├── ftv2link.png │ │ ├── ftv2mlastnode.png │ │ ├── ftv2mnode.png │ │ ├── ftv2mo.png │ │ ├── ftv2node.png │ │ ├── ftv2ns.png │ │ ├── ftv2plastnode.png │ │ ├── ftv2pnode.png │ │ ├── ftv2splitbar.png │ │ ├── ftv2vertline.png │ │ ├── functions.html │ │ ├── functions_b.html │ │ ├── functions_c.html │ │ ├── functions_d.html │ │ ├── functions_e.html │ │ ├── functions_f.html │ │ ├── functions_h.html │ │ ├── functions_i.html │ │ ├── functions_k.html │ │ ├── functions_l.html │ │ ├── functions_m.html │ │ ├── functions_n.html │ │ ├── functions_o.html │ │ ├── functions_p.html │ │ ├── functions_q.html │ │ ├── functions_r.html │ │ ├── functions_s.html │ │ ├── functions_t.html │ │ ├── functions_u.html │ │ ├── functions_v.html │ │ ├── functions_vars.html │ │ ├── functions_vars_b.html │ │ ├── functions_vars_c.html │ │ ├── functions_vars_d.html │ │ ├── functions_vars_e.html │ │ ├── functions_vars_f.html │ │ ├── functions_vars_h.html │ │ ├── functions_vars_i.html │ │ ├── functions_vars_k.html │ │ ├── functions_vars_l.html │ │ ├── functions_vars_m.html │ │ ├── functions_vars_n.html │ │ ├── functions_vars_o.html │ │ ├── functions_vars_p.html │ │ ├── functions_vars_q.html │ │ ├── functions_vars_r.html │ │ ├── functions_vars_s.html │ │ ├── functions_vars_t.html │ │ ├── functions_vars_u.html │ │ ├── functions_vars_v.html │ │ ├── functions_vars_w.html │ │ ├── functions_w.html │ │ ├── globals.html │ │ ├── globals_defs.html │ │ ├── globals_enum.html │ │ ├── globals_eval.html │ │ ├── globals_func.html │ │ ├── globals_type.html │ │ ├── group__basic.html │ │ ├── group__emitter.html │ │ ├── group__events.html │ │ ├── group__export.html │ │ ├── group__nodes.html │ │ ├── group__parser.html │ │ ├── group__styles.html │ │ ├── group__tokens.html │ │ ├── group__version.html │ │ ├── index.html │ │ ├── modules.html │ │ ├── nav_f.png │ │ ├── nav_g.png │ │ ├── nav_h.png │ │ ├── open.png │ │ ├── structyaml__alias__data__s.html │ │ ├── structyaml__document__s.html │ │ ├── structyaml__emitter__s.html │ │ ├── structyaml__event__s.html │ │ ├── structyaml__mark__s.html │ │ ├── structyaml__node__pair__s.html │ │ ├── structyaml__node__s.html │ │ ├── structyaml__parser__s.html │ │ ├── structyaml__simple__key__s.html │ │ ├── structyaml__tag__directive__s.html │ │ ├── structyaml__token__s.html │ │ ├── structyaml__version__directive__s.html │ │ ├── sync_off.png │ │ ├── sync_on.png │ │ ├── tab_a.png │ │ ├── tab_b.png │ │ ├── tab_h.png │ │ ├── tab_s.png │ │ ├── tabs.css │ │ └── yaml_8h.html ├── include │ ├── Makefile.am │ ├── Makefile.in │ └── yaml.h ├── src │ ├── Makefile.am │ ├── Makefile.in │ ├── api.c │ ├── dumper.c │ ├── emitter.c │ ├── loader.c │ ├── parser.c │ ├── reader.c │ ├── scanner.c │ ├── writer.c │ └── yaml_private.h ├── tests │ ├── Makefile.am │ ├── Makefile.in │ ├── example-deconstructor-alt.c │ ├── example-deconstructor.c │ ├── example-reformatter-alt.c │ ├── example-reformatter.c │ ├── run-dumper.c │ ├── run-emitter.c │ ├── run-loader.c │ ├── run-parser.c │ ├── run-scanner.c │ ├── test-reader.c │ └── test-version.c ├── win32 │ ├── Makefile.am │ ├── Makefile.in │ └── config.h └── yaml-0.1.pc.in └── zlib ├── CMakeLists.txt ├── ChangeLog ├── FAQ ├── INDEX ├── Makefile ├── Makefile.in ├── README ├── adler32.c ├── amiga ├── Makefile.pup └── Makefile.sas ├── compress.c ├── configure ├── contrib ├── README.contrib ├── ada │ ├── buffer_demo.adb │ ├── mtest.adb │ ├── read.adb │ ├── readme.txt │ ├── test.adb │ ├── zlib-streams.adb │ ├── zlib-streams.ads │ ├── zlib-thin.adb │ ├── zlib-thin.ads │ ├── zlib.adb │ ├── zlib.ads │ └── zlib.gpr ├── amd64 │ └── amd64-match.S ├── asm686 │ ├── README.686 │ └── match.S ├── blast │ ├── Makefile │ ├── README │ ├── blast.c │ ├── blast.h │ ├── test.pk │ └── test.txt ├── delphi │ ├── ZLib.pas │ ├── ZLibConst.pas │ ├── readme.txt │ └── zlibd32.mak ├── dotzlib │ ├── DotZLib.build │ ├── DotZLib.chm │ ├── DotZLib.sln │ ├── DotZLib │ │ ├── AssemblyInfo.cs │ │ ├── ChecksumImpl.cs │ │ ├── CircularBuffer.cs │ │ ├── CodecBase.cs │ │ ├── Deflater.cs │ │ ├── DotZLib.cs │ │ ├── DotZLib.csproj │ │ ├── GZipStream.cs │ │ ├── Inflater.cs │ │ └── UnitTests.cs │ ├── LICENSE_1_0.txt │ └── readme.txt ├── gcc_gvmat64 │ └── gvmat64.S ├── infback9 │ ├── README │ ├── infback9.c │ ├── infback9.h │ ├── inffix9.h │ ├── inflate9.h │ ├── inftree9.c │ └── inftree9.h ├── inflate86 │ ├── inffas86.c │ └── inffast.S ├── iostream │ ├── test.cpp │ ├── zfstream.cpp │ └── zfstream.h ├── iostream2 │ ├── zstream.h │ └── zstream_test.cpp ├── iostream3 │ ├── README │ ├── TODO │ ├── test.cc │ ├── zfstream.cc │ └── zfstream.h ├── masmx64 │ ├── bld_ml64.bat │ ├── gvmat64.asm │ ├── inffas8664.c │ ├── inffasx64.asm │ └── readme.txt ├── masmx86 │ ├── bld_ml32.bat │ ├── inffas32.asm │ ├── match686.asm │ └── readme.txt ├── minizip │ ├── Makefile │ ├── Makefile.am │ ├── MiniZip64_Changes.txt │ ├── MiniZip64_info.txt │ ├── configure.ac │ ├── crypt.h │ ├── ioapi.c │ ├── ioapi.h │ ├── iowin32.c │ ├── iowin32.h │ ├── make_vms.com │ ├── miniunz.c │ ├── miniunzip.1 │ ├── minizip.1 │ ├── minizip.c │ ├── minizip.pc.in │ ├── mztools.c │ ├── mztools.h │ ├── unzip.c │ ├── unzip.h │ ├── zip.c │ └── zip.h ├── pascal │ ├── example.pas │ ├── readme.txt │ ├── zlibd32.mak │ └── zlibpas.pas ├── puff │ ├── Makefile │ ├── README │ ├── puff.c │ ├── puff.h │ ├── pufftest.c │ └── zeros.raw ├── testzlib │ ├── testzlib.c │ └── testzlib.txt ├── untgz │ ├── Makefile │ ├── Makefile.msc │ └── untgz.c └── vstudio │ ├── readme.txt │ ├── vc10 │ ├── miniunz.vcxproj │ ├── miniunz.vcxproj.filters │ ├── minizip.vcxproj │ ├── minizip.vcxproj.filters │ ├── testzlib.vcxproj │ ├── testzlib.vcxproj.filters │ ├── testzlibdll.vcxproj │ ├── testzlibdll.vcxproj.filters │ ├── zlib.rc │ ├── zlibstat.vcxproj │ ├── zlibstat.vcxproj.filters │ ├── zlibvc.def │ ├── zlibvc.sln │ ├── zlibvc.vcxproj │ └── zlibvc.vcxproj.filters │ ├── vc11 │ ├── miniunz.vcxproj │ ├── minizip.vcxproj │ ├── testzlib.vcxproj │ ├── testzlibdll.vcxproj │ ├── zlib.rc │ ├── zlibstat.vcxproj │ ├── zlibvc.def │ ├── zlibvc.sln │ └── zlibvc.vcxproj │ ├── vc12 │ ├── miniunz.vcxproj │ ├── minizip.vcxproj │ ├── testzlib.vcxproj │ ├── testzlibdll.vcxproj │ ├── zlib.rc │ ├── zlibstat.vcxproj │ ├── zlibvc.def │ ├── zlibvc.sln │ └── zlibvc.vcxproj │ ├── vc14 │ ├── miniunz.vcxproj │ ├── minizip.vcxproj │ ├── testzlib.vcxproj │ ├── testzlibdll.vcxproj │ ├── zlib.rc │ ├── zlibstat.vcxproj │ ├── zlibvc.def │ ├── zlibvc.sln │ └── zlibvc.vcxproj │ └── vc9 │ ├── miniunz.vcproj │ ├── minizip.vcproj │ ├── testzlib.vcproj │ ├── testzlibdll.vcproj │ ├── zlib.rc │ ├── zlibstat.vcproj │ ├── zlibvc.def │ ├── zlibvc.sln │ └── zlibvc.vcproj ├── crc32.c ├── crc32.h ├── deflate.c ├── deflate.h ├── doc ├── algorithm.txt ├── rfc1950.txt ├── rfc1951.txt ├── rfc1952.txt └── txtvsbin.txt ├── examples ├── README.examples ├── enough.c ├── fitblk.c ├── gun.c ├── gzappend.c ├── gzjoin.c ├── gzlog.c ├── gzlog.h ├── zlib_how.html ├── zpipe.c └── zran.c ├── gzclose.c ├── gzguts.h ├── gzlib.c ├── gzread.c ├── gzwrite.c ├── infback.c ├── inffast.c ├── inffast.h ├── inffixed.h ├── inflate.c ├── inflate.h ├── inftrees.c ├── inftrees.h ├── make_vms.com ├── msdos ├── Makefile.bor ├── Makefile.dj2 ├── Makefile.emx ├── Makefile.msc └── Makefile.tc ├── nintendods ├── Makefile └── README ├── old ├── Makefile.emx ├── Makefile.riscos ├── README ├── descrip.mms ├── os2 │ ├── Makefile.os2 │ └── zlib.def └── visual-basic.txt ├── os400 ├── README400 ├── bndsrc ├── make.sh └── zlib.inc ├── qnx └── package.qpg ├── test ├── example.c ├── infcover.c └── minigzip.c ├── treebuild.xml ├── trees.c ├── trees.h ├── uncompr.c ├── watcom ├── watcom_f.mak └── watcom_l.mak ├── win32 ├── DLL_FAQ.txt ├── Makefile.bor ├── Makefile.gcc ├── Makefile.msc ├── README-WIN32.txt ├── VisualC.txt ├── zlib.def └── zlib1.rc ├── zconf.h ├── zconf.h.cmakein ├── zconf.h.in ├── zlib.3 ├── zlib.3.pdf ├── zlib.h ├── zlib.map ├── zlib.pc.cmakein ├── zlib.pc.in ├── zlib2ansi ├── zutil.c └── zutil.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/appveyor.yml -------------------------------------------------------------------------------- /bin/rubyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/bin/rubyc -------------------------------------------------------------------------------- /lib/compiler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/lib/compiler.rb -------------------------------------------------------------------------------- /lib/compiler/constants.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/lib/compiler/constants.rb -------------------------------------------------------------------------------- /lib/compiler/error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/lib/compiler/error.rb -------------------------------------------------------------------------------- /lib/compiler/utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/lib/compiler/utils.rb -------------------------------------------------------------------------------- /ruby/.document: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/.document -------------------------------------------------------------------------------- /ruby/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/.editorconfig -------------------------------------------------------------------------------- /ruby/.gdbinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/.gdbinit -------------------------------------------------------------------------------- /ruby/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/.gitattributes -------------------------------------------------------------------------------- /ruby/.indent.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/.indent.pro -------------------------------------------------------------------------------- /ruby/.revision.time: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ruby/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/.travis.yml -------------------------------------------------------------------------------- /ruby/BSDL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/BSDL -------------------------------------------------------------------------------- /ruby/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/CONTRIBUTING.md -------------------------------------------------------------------------------- /ruby/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/COPYING -------------------------------------------------------------------------------- /ruby/COPYING.ja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/COPYING.ja -------------------------------------------------------------------------------- /ruby/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ChangeLog -------------------------------------------------------------------------------- /ruby/GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/GPL -------------------------------------------------------------------------------- /ruby/KNOWNBUGS.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/KNOWNBUGS.rb -------------------------------------------------------------------------------- /ruby/LEGAL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/LEGAL -------------------------------------------------------------------------------- /ruby/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/Makefile.in -------------------------------------------------------------------------------- /ruby/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/NEWS -------------------------------------------------------------------------------- /ruby/README.EXT: -------------------------------------------------------------------------------- 1 | Moved to doc/extension.rdoc 2 | -------------------------------------------------------------------------------- /ruby/README.EXT.ja: -------------------------------------------------------------------------------- 1 | doc/extension.ja.rdocに移動しました 2 | -------------------------------------------------------------------------------- /ruby/README.ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/README.ja.md -------------------------------------------------------------------------------- /ruby/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/README.md -------------------------------------------------------------------------------- /ruby/acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/acinclude.m4 -------------------------------------------------------------------------------- /ruby/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/aclocal.m4 -------------------------------------------------------------------------------- /ruby/addr2line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/addr2line.c -------------------------------------------------------------------------------- /ruby/addr2line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/addr2line.h -------------------------------------------------------------------------------- /ruby/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/appveyor.yml -------------------------------------------------------------------------------- /ruby/array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/array.c -------------------------------------------------------------------------------- /ruby/autoupdate_exepath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/autoupdate_exepath.c -------------------------------------------------------------------------------- /ruby/autoupdate_inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/autoupdate_inflate.c -------------------------------------------------------------------------------- /ruby/autoupdate_tmpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/autoupdate_tmpf.c -------------------------------------------------------------------------------- /ruby/autoupdate_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/autoupdate_utils.c -------------------------------------------------------------------------------- /ruby/basictest/runner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/basictest/runner.rb -------------------------------------------------------------------------------- /ruby/basictest/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/basictest/test.rb -------------------------------------------------------------------------------- /ruby/benchmark/driver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/benchmark/driver.rb -------------------------------------------------------------------------------- /ruby/benchmark/gc/aobench.rb: -------------------------------------------------------------------------------- 1 | require_relative '../bm_app_aobench.rb' 2 | -------------------------------------------------------------------------------- /ruby/benchmark/gc/binary_trees.rb: -------------------------------------------------------------------------------- 1 | require_relative '../bm_so_binary_trees.rb' 2 | -------------------------------------------------------------------------------- /ruby/benchmark/gc/null.rb: -------------------------------------------------------------------------------- 1 | # null 2 | -------------------------------------------------------------------------------- /ruby/benchmark/gc/pentomino.rb: -------------------------------------------------------------------------------- 1 | require_relative '../bm_app_pentomino.rb' 2 | -------------------------------------------------------------------------------- /ruby/benchmark/gc/rdoc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/benchmark/gc/rdoc.rb -------------------------------------------------------------------------------- /ruby/benchmark/gc/ring.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/benchmark/gc/ring.rb -------------------------------------------------------------------------------- /ruby/benchmark/report.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/benchmark/report.rb -------------------------------------------------------------------------------- /ruby/benchmark/run.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/benchmark/run.rb -------------------------------------------------------------------------------- /ruby/benchmark/runc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/benchmark/runc.rb -------------------------------------------------------------------------------- /ruby/bignum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/bignum.c -------------------------------------------------------------------------------- /ruby/bin/erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/bin/erb -------------------------------------------------------------------------------- /ruby/bin/gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/bin/gem -------------------------------------------------------------------------------- /ruby/bin/irb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/bin/irb -------------------------------------------------------------------------------- /ruby/bin/rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/bin/rdoc -------------------------------------------------------------------------------- /ruby/bin/ri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/bin/ri -------------------------------------------------------------------------------- /ruby/bootstraptest/test_string.rb: -------------------------------------------------------------------------------- 1 | assert_normal_exit %q{ 2 | inspect.clear 3 | }, '[ruby-core:68110]' 4 | -------------------------------------------------------------------------------- /ruby/ccan/licenses/CC0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ccan/licenses/CC0 -------------------------------------------------------------------------------- /ruby/ccan/list/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ccan/list/list.h -------------------------------------------------------------------------------- /ruby/ccan/str/str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ccan/str/str.h -------------------------------------------------------------------------------- /ruby/class.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/class.c -------------------------------------------------------------------------------- /ruby/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/common.mk -------------------------------------------------------------------------------- /ruby/compar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/compar.c -------------------------------------------------------------------------------- /ruby/compile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/compile.c -------------------------------------------------------------------------------- /ruby/complex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/complex.c -------------------------------------------------------------------------------- /ruby/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/configure -------------------------------------------------------------------------------- /ruby/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/configure.in -------------------------------------------------------------------------------- /ruby/constant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/constant.h -------------------------------------------------------------------------------- /ruby/cont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/cont.c -------------------------------------------------------------------------------- /ruby/coverage/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/coverage/README -------------------------------------------------------------------------------- /ruby/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/debug.c -------------------------------------------------------------------------------- /ruby/defs/gmake.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/defs/gmake.mk -------------------------------------------------------------------------------- /ruby/defs/id.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/defs/id.def -------------------------------------------------------------------------------- /ruby/defs/keywords: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/defs/keywords -------------------------------------------------------------------------------- /ruby/defs/lex.c.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/defs/lex.c.src -------------------------------------------------------------------------------- /ruby/defs/opt_operand.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/defs/opt_operand.def -------------------------------------------------------------------------------- /ruby/dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/dir.c -------------------------------------------------------------------------------- /ruby/dln.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/dln.c -------------------------------------------------------------------------------- /ruby/dln.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/dln.h -------------------------------------------------------------------------------- /ruby/dln_find.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/dln_find.c -------------------------------------------------------------------------------- /ruby/dmydln.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/dmydln.c -------------------------------------------------------------------------------- /ruby/dmyenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/dmyenc.c -------------------------------------------------------------------------------- /ruby/dmyext.c: -------------------------------------------------------------------------------- 1 | void 2 | Init_ext(void) 3 | { 4 | } 5 | -------------------------------------------------------------------------------- /ruby/doc/.document: -------------------------------------------------------------------------------- 1 | *.rdoc 2 | ChangeLog* 3 | NEWS-* 4 | syntax 5 | -------------------------------------------------------------------------------- /ruby/doc/ChangeLog-1.8.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/doc/ChangeLog-1.8.0 -------------------------------------------------------------------------------- /ruby/doc/ChangeLog-1.9.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/doc/ChangeLog-1.9.3 -------------------------------------------------------------------------------- /ruby/doc/ChangeLog-2.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/doc/ChangeLog-2.0.0 -------------------------------------------------------------------------------- /ruby/doc/ChangeLog-2.1.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/doc/ChangeLog-2.1.0 -------------------------------------------------------------------------------- /ruby/doc/ChangeLog-2.2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/doc/ChangeLog-2.2.0 -------------------------------------------------------------------------------- /ruby/doc/ChangeLog-2.3.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/doc/ChangeLog-2.3.0 -------------------------------------------------------------------------------- /ruby/doc/ChangeLog-2.4.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/doc/ChangeLog-2.4.0 -------------------------------------------------------------------------------- /ruby/doc/ChangeLog-2016: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/doc/ChangeLog-2016 -------------------------------------------------------------------------------- /ruby/doc/ChangeLog-YARV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/doc/ChangeLog-YARV -------------------------------------------------------------------------------- /ruby/doc/NEWS-1.8.7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/doc/NEWS-1.8.7 -------------------------------------------------------------------------------- /ruby/doc/NEWS-1.9.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/doc/NEWS-1.9.1 -------------------------------------------------------------------------------- /ruby/doc/NEWS-1.9.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/doc/NEWS-1.9.2 -------------------------------------------------------------------------------- /ruby/doc/NEWS-1.9.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/doc/NEWS-1.9.3 -------------------------------------------------------------------------------- /ruby/doc/NEWS-2.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/doc/NEWS-2.0.0 -------------------------------------------------------------------------------- /ruby/doc/NEWS-2.1.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/doc/NEWS-2.1.0 -------------------------------------------------------------------------------- /ruby/doc/NEWS-2.2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/doc/NEWS-2.2.0 -------------------------------------------------------------------------------- /ruby/doc/NEWS-2.3.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/doc/NEWS-2.3.0 -------------------------------------------------------------------------------- /ruby/doc/etc.rd.ja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/doc/etc.rd.ja -------------------------------------------------------------------------------- /ruby/doc/extension.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/doc/extension.rdoc -------------------------------------------------------------------------------- /ruby/doc/globals.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/doc/globals.rdoc -------------------------------------------------------------------------------- /ruby/doc/irb/irb.rd.ja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/doc/irb/irb.rd.ja -------------------------------------------------------------------------------- /ruby/doc/keywords.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/doc/keywords.rdoc -------------------------------------------------------------------------------- /ruby/doc/maintainers.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/doc/maintainers.rdoc -------------------------------------------------------------------------------- /ruby/doc/marshal.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/doc/marshal.rdoc -------------------------------------------------------------------------------- /ruby/doc/pty/README.ja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/doc/pty/README.ja -------------------------------------------------------------------------------- /ruby/doc/regexp.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/doc/regexp.rdoc -------------------------------------------------------------------------------- /ruby/doc/security.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/doc/security.rdoc -------------------------------------------------------------------------------- /ruby/doc/shell.rd.ja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/doc/shell.rd.ja -------------------------------------------------------------------------------- /ruby/doc/syntax.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/doc/syntax.rdoc -------------------------------------------------------------------------------- /ruby/enc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/enc/Makefile.in -------------------------------------------------------------------------------- /ruby/enc/ascii.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/enc/ascii.c -------------------------------------------------------------------------------- /ruby/enc/big5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/enc/big5.c -------------------------------------------------------------------------------- /ruby/enc/cp949.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/enc/cp949.c -------------------------------------------------------------------------------- /ruby/enc/depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/enc/depend -------------------------------------------------------------------------------- /ruby/enc/ebcdic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/enc/ebcdic.h -------------------------------------------------------------------------------- /ruby/enc/emacs_mule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/enc/emacs_mule.c -------------------------------------------------------------------------------- /ruby/enc/encdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/enc/encdb.c -------------------------------------------------------------------------------- /ruby/enc/encinit.c.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/enc/encinit.c.erb -------------------------------------------------------------------------------- /ruby/enc/euc_jp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/enc/euc_jp.c -------------------------------------------------------------------------------- /ruby/enc/euc_kr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/enc/euc_kr.c -------------------------------------------------------------------------------- /ruby/enc/euc_tw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/enc/euc_tw.c -------------------------------------------------------------------------------- /ruby/enc/gb18030.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/enc/gb18030.c -------------------------------------------------------------------------------- /ruby/enc/gb2312.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/enc/gb2312.c -------------------------------------------------------------------------------- /ruby/enc/gbk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/enc/gbk.c -------------------------------------------------------------------------------- /ruby/enc/iso_2022_jp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/enc/iso_2022_jp.h -------------------------------------------------------------------------------- /ruby/enc/iso_8859.h: -------------------------------------------------------------------------------- 1 | #define SHARP_s 0xdf 2 | -------------------------------------------------------------------------------- /ruby/enc/iso_8859_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/enc/iso_8859_1.c -------------------------------------------------------------------------------- /ruby/enc/iso_8859_10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/enc/iso_8859_10.c -------------------------------------------------------------------------------- /ruby/enc/iso_8859_11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/enc/iso_8859_11.c -------------------------------------------------------------------------------- /ruby/enc/iso_8859_13.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/enc/iso_8859_13.c -------------------------------------------------------------------------------- /ruby/enc/iso_8859_14.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/enc/iso_8859_14.c -------------------------------------------------------------------------------- /ruby/enc/iso_8859_15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/enc/iso_8859_15.c -------------------------------------------------------------------------------- /ruby/enc/iso_8859_16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/enc/iso_8859_16.c -------------------------------------------------------------------------------- /ruby/enc/iso_8859_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/enc/iso_8859_2.c -------------------------------------------------------------------------------- /ruby/enc/iso_8859_3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/enc/iso_8859_3.c -------------------------------------------------------------------------------- /ruby/enc/iso_8859_4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/enc/iso_8859_4.c -------------------------------------------------------------------------------- /ruby/enc/iso_8859_5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/enc/iso_8859_5.c -------------------------------------------------------------------------------- /ruby/enc/iso_8859_6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/enc/iso_8859_6.c -------------------------------------------------------------------------------- /ruby/enc/iso_8859_7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/enc/iso_8859_7.c -------------------------------------------------------------------------------- /ruby/enc/iso_8859_8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/enc/iso_8859_8.c -------------------------------------------------------------------------------- /ruby/enc/iso_8859_9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/enc/iso_8859_9.c -------------------------------------------------------------------------------- /ruby/enc/jis/props.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/enc/jis/props.h -------------------------------------------------------------------------------- /ruby/enc/jis/props.h.blt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/enc/jis/props.h.blt -------------------------------------------------------------------------------- /ruby/enc/jis/props.kwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/enc/jis/props.kwd -------------------------------------------------------------------------------- /ruby/enc/jis/props.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/enc/jis/props.src -------------------------------------------------------------------------------- /ruby/enc/koi8_r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/enc/koi8_r.c -------------------------------------------------------------------------------- /ruby/enc/koi8_u.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/enc/koi8_u.c -------------------------------------------------------------------------------- /ruby/enc/make_encmake.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/enc/make_encmake.rb -------------------------------------------------------------------------------- /ruby/enc/mktable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/enc/mktable.c -------------------------------------------------------------------------------- /ruby/enc/prelude.rb: -------------------------------------------------------------------------------- 1 | begin 2 | require 'unicode_normalize' 3 | rescue LoadError 4 | end 5 | -------------------------------------------------------------------------------- /ruby/enc/shift_jis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/enc/shift_jis.c -------------------------------------------------------------------------------- /ruby/enc/trans/big5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/enc/trans/big5.c -------------------------------------------------------------------------------- /ruby/enc/trans/big5.trans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/enc/trans/big5.trans -------------------------------------------------------------------------------- /ruby/enc/trans/chinese.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/enc/trans/chinese.c -------------------------------------------------------------------------------- /ruby/enc/trans/ebcdic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/enc/trans/ebcdic.c -------------------------------------------------------------------------------- /ruby/enc/trans/emoji.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/enc/trans/emoji.c -------------------------------------------------------------------------------- /ruby/enc/trans/escape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/enc/trans/escape.c -------------------------------------------------------------------------------- /ruby/enc/trans/gb18030.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/enc/trans/gb18030.c -------------------------------------------------------------------------------- /ruby/enc/trans/gbk-tbl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/enc/trans/gbk-tbl.rb -------------------------------------------------------------------------------- /ruby/enc/trans/gbk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/enc/trans/gbk.c -------------------------------------------------------------------------------- /ruby/enc/trans/gbk.trans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/enc/trans/gbk.trans -------------------------------------------------------------------------------- /ruby/enc/trans/iso2022.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/enc/trans/iso2022.c -------------------------------------------------------------------------------- /ruby/enc/trans/japanese.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/enc/trans/japanese.c -------------------------------------------------------------------------------- /ruby/enc/trans/korean.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/enc/trans/korean.c -------------------------------------------------------------------------------- /ruby/enc/trans/newline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/enc/trans/newline.c -------------------------------------------------------------------------------- /ruby/enc/trans/transdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/enc/trans/transdb.c -------------------------------------------------------------------------------- /ruby/enc/trans/utf8_mac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/enc/trans/utf8_mac.c -------------------------------------------------------------------------------- /ruby/enc/unicode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/enc/unicode.c -------------------------------------------------------------------------------- /ruby/enc/us_ascii.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/enc/us_ascii.c -------------------------------------------------------------------------------- /ruby/enc/utf_16_32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/enc/utf_16_32.h -------------------------------------------------------------------------------- /ruby/enc/utf_16be.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/enc/utf_16be.c -------------------------------------------------------------------------------- /ruby/enc/utf_16le.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/enc/utf_16le.c -------------------------------------------------------------------------------- /ruby/enc/utf_32be.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/enc/utf_32be.c -------------------------------------------------------------------------------- /ruby/enc/utf_32le.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/enc/utf_32le.c -------------------------------------------------------------------------------- /ruby/enc/utf_7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/enc/utf_7.h -------------------------------------------------------------------------------- /ruby/enc/utf_8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/enc/utf_8.c -------------------------------------------------------------------------------- /ruby/enc/windows_1250.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/enc/windows_1250.c -------------------------------------------------------------------------------- /ruby/enc/windows_1251.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/enc/windows_1251.c -------------------------------------------------------------------------------- /ruby/enc/windows_1252.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/enc/windows_1252.c -------------------------------------------------------------------------------- /ruby/enc/windows_1253.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/enc/windows_1253.c -------------------------------------------------------------------------------- /ruby/enc/windows_1254.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/enc/windows_1254.c -------------------------------------------------------------------------------- /ruby/enc/windows_1257.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/enc/windows_1257.c -------------------------------------------------------------------------------- /ruby/enc/windows_31j.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/enc/windows_31j.c -------------------------------------------------------------------------------- /ruby/enc/x_emoji.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/enc/x_emoji.h -------------------------------------------------------------------------------- /ruby/encindex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/encindex.h -------------------------------------------------------------------------------- /ruby/enclose_io_memfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/enclose_io_memfs.c -------------------------------------------------------------------------------- /ruby/enclose_io_unix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/enclose_io_unix.c -------------------------------------------------------------------------------- /ruby/enclose_io_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/enclose_io_win32.c -------------------------------------------------------------------------------- /ruby/encoding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/encoding.c -------------------------------------------------------------------------------- /ruby/enum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/enum.c -------------------------------------------------------------------------------- /ruby/enumerator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/enumerator.c -------------------------------------------------------------------------------- /ruby/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/error.c -------------------------------------------------------------------------------- /ruby/eval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/eval.c -------------------------------------------------------------------------------- /ruby/eval_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/eval_error.c -------------------------------------------------------------------------------- /ruby/eval_intern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/eval_intern.h -------------------------------------------------------------------------------- /ruby/eval_jump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/eval_jump.c -------------------------------------------------------------------------------- /ruby/ext/-test-/dln/empty/empty.c: -------------------------------------------------------------------------------- 1 | void 2 | Init_empty(void) 3 | { 4 | } 5 | -------------------------------------------------------------------------------- /ruby/ext/-test-/file/fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/-test-/file/fs.c -------------------------------------------------------------------------------- /ruby/ext/-test-/load/dot.dot/dot.dot.c: -------------------------------------------------------------------------------- 1 | void Init_dot(void) {} 2 | -------------------------------------------------------------------------------- /ruby/ext/-test-/num2int/extconf.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: false 2 | create_makefile("-test-/num2int") 3 | -------------------------------------------------------------------------------- /ruby/ext/-test-/printf/extconf.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: false 2 | create_makefile("-test-/printf") 3 | -------------------------------------------------------------------------------- /ruby/ext/-test-/vm/depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/-test-/vm/depend -------------------------------------------------------------------------------- /ruby/ext/-test-/vm/extconf.rb: -------------------------------------------------------------------------------- 1 | create_makefile('-test-/vm/at_exit') 2 | -------------------------------------------------------------------------------- /ruby/ext/-test-/win32/dln/libdlntest.c: -------------------------------------------------------------------------------- 1 | void 2 | dlntest_ordinal(void) 3 | { 4 | } 5 | -------------------------------------------------------------------------------- /ruby/ext/-test-/win32/dln/libdlntest.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | dlntest_ordinal @1 NONAME 3 | -------------------------------------------------------------------------------- /ruby/ext/.document: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/.document -------------------------------------------------------------------------------- /ruby/ext/Setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/Setup -------------------------------------------------------------------------------- /ruby/ext/Setup.atheos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/Setup.atheos -------------------------------------------------------------------------------- /ruby/ext/Setup.nacl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/Setup.nacl -------------------------------------------------------------------------------- /ruby/ext/Setup.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/Setup.nt -------------------------------------------------------------------------------- /ruby/ext/cgi/escape/extconf.rb: -------------------------------------------------------------------------------- 1 | require 'mkmf' 2 | 3 | create_makefile 'cgi/escape' 4 | -------------------------------------------------------------------------------- /ruby/ext/coverage/depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/coverage/depend -------------------------------------------------------------------------------- /ruby/ext/date/date_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/date/date_core.c -------------------------------------------------------------------------------- /ruby/ext/date/date_tmx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/date/date_tmx.h -------------------------------------------------------------------------------- /ruby/ext/date/depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/date/depend -------------------------------------------------------------------------------- /ruby/ext/date/extconf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/date/extconf.rb -------------------------------------------------------------------------------- /ruby/ext/date/lib/date.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/date/lib/date.rb -------------------------------------------------------------------------------- /ruby/ext/date/prereq.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/date/prereq.mk -------------------------------------------------------------------------------- /ruby/ext/date/zonetab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/date/zonetab.h -------------------------------------------------------------------------------- /ruby/ext/dbm/dbm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/dbm/dbm.c -------------------------------------------------------------------------------- /ruby/ext/dbm/depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/dbm/depend -------------------------------------------------------------------------------- /ruby/ext/dbm/extconf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/dbm/extconf.rb -------------------------------------------------------------------------------- /ruby/ext/digest/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/digest/defs.h -------------------------------------------------------------------------------- /ruby/ext/digest/depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/digest/depend -------------------------------------------------------------------------------- /ruby/ext/digest/digest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/digest/digest.c -------------------------------------------------------------------------------- /ruby/ext/digest/digest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/digest/digest.h -------------------------------------------------------------------------------- /ruby/ext/digest/md5/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/digest/md5/md5.c -------------------------------------------------------------------------------- /ruby/ext/digest/md5/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/digest/md5/md5.h -------------------------------------------------------------------------------- /ruby/ext/digest/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/digest/test.sh -------------------------------------------------------------------------------- /ruby/ext/etc/depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/etc/depend -------------------------------------------------------------------------------- /ruby/ext/etc/etc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/etc/etc.c -------------------------------------------------------------------------------- /ruby/ext/etc/extconf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/etc/extconf.rb -------------------------------------------------------------------------------- /ruby/ext/extmk.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/extmk.rb -------------------------------------------------------------------------------- /ruby/ext/fcntl/depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/fcntl/depend -------------------------------------------------------------------------------- /ruby/ext/fcntl/extconf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/fcntl/extconf.rb -------------------------------------------------------------------------------- /ruby/ext/fcntl/fcntl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/fcntl/fcntl.c -------------------------------------------------------------------------------- /ruby/ext/fiber/depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/fiber/depend -------------------------------------------------------------------------------- /ruby/ext/fiber/extconf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/fiber/extconf.rb -------------------------------------------------------------------------------- /ruby/ext/fiber/fiber.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/fiber/fiber.c -------------------------------------------------------------------------------- /ruby/ext/fiddle/closure.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/fiddle/closure.c -------------------------------------------------------------------------------- /ruby/ext/fiddle/closure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/fiddle/closure.h -------------------------------------------------------------------------------- /ruby/ext/fiddle/depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/fiddle/depend -------------------------------------------------------------------------------- /ruby/ext/fiddle/extlibs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/fiddle/extlibs -------------------------------------------------------------------------------- /ruby/ext/fiddle/fiddle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/fiddle/fiddle.c -------------------------------------------------------------------------------- /ruby/ext/fiddle/fiddle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/fiddle/fiddle.h -------------------------------------------------------------------------------- /ruby/ext/fiddle/handle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/fiddle/handle.c -------------------------------------------------------------------------------- /ruby/ext/fiddle/libffi-3.2.1/testsuite/config/default.exp: -------------------------------------------------------------------------------- 1 | load_lib "standard.exp" 2 | -------------------------------------------------------------------------------- /ruby/ext/fiddle/pointer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/fiddle/pointer.c -------------------------------------------------------------------------------- /ruby/ext/gdbm/README: -------------------------------------------------------------------------------- 1 | gdbm ext-library for Ruby 1.3 or later 2 | -------------------------------------------------------------------------------- /ruby/ext/gdbm/depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/gdbm/depend -------------------------------------------------------------------------------- /ruby/ext/gdbm/extconf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/gdbm/extconf.rb -------------------------------------------------------------------------------- /ruby/ext/gdbm/gdbm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/gdbm/gdbm.c -------------------------------------------------------------------------------- /ruby/ext/io/console/win32_vk.chksum: -------------------------------------------------------------------------------- 1 | src="win32_vk.list", len=3269, checksum=34076 2 | -------------------------------------------------------------------------------- /ruby/ext/io/wait/depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/io/wait/depend -------------------------------------------------------------------------------- /ruby/ext/io/wait/wait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/io/wait/wait.c -------------------------------------------------------------------------------- /ruby/ext/json/extconf.rb: -------------------------------------------------------------------------------- 1 | require 'mkmf' 2 | create_makefile('json') 3 | -------------------------------------------------------------------------------- /ruby/ext/json/lib/json.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/json/lib/json.rb -------------------------------------------------------------------------------- /ruby/ext/nkf/depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/nkf/depend -------------------------------------------------------------------------------- /ruby/ext/nkf/extconf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/nkf/extconf.rb -------------------------------------------------------------------------------- /ruby/ext/nkf/lib/kconv.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/nkf/lib/kconv.rb -------------------------------------------------------------------------------- /ruby/ext/nkf/nkf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/nkf/nkf.c -------------------------------------------------------------------------------- /ruby/ext/objspace/depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/objspace/depend -------------------------------------------------------------------------------- /ruby/ext/openssl/depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/openssl/depend -------------------------------------------------------------------------------- /ruby/ext/openssl/ossl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/openssl/ossl.c -------------------------------------------------------------------------------- /ruby/ext/openssl/ossl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/openssl/ossl.h -------------------------------------------------------------------------------- /ruby/ext/pathname/depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/pathname/depend -------------------------------------------------------------------------------- /ruby/ext/psych/depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/psych/depend -------------------------------------------------------------------------------- /ruby/ext/psych/extconf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/psych/extconf.rb -------------------------------------------------------------------------------- /ruby/ext/psych/psych.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/psych/psych.c -------------------------------------------------------------------------------- /ruby/ext/psych/psych.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/psych/psych.h -------------------------------------------------------------------------------- /ruby/ext/psych/yaml/api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/psych/yaml/api.c -------------------------------------------------------------------------------- /ruby/ext/pty/depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/pty/depend -------------------------------------------------------------------------------- /ruby/ext/pty/extconf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/pty/extconf.rb -------------------------------------------------------------------------------- /ruby/ext/pty/pty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/pty/pty.c -------------------------------------------------------------------------------- /ruby/ext/readline/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/readline/README -------------------------------------------------------------------------------- /ruby/ext/readline/depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/readline/depend -------------------------------------------------------------------------------- /ruby/ext/ripper/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/ripper/README -------------------------------------------------------------------------------- /ruby/ext/ripper/depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/ripper/depend -------------------------------------------------------------------------------- /ruby/ext/ripper/ripper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/ripper/ripper.c -------------------------------------------------------------------------------- /ruby/ext/ripper/ripper.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/ripper/ripper.y -------------------------------------------------------------------------------- /ruby/ext/ripper/y.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/ripper/y.output -------------------------------------------------------------------------------- /ruby/ext/rubyvm/extconf.rb: -------------------------------------------------------------------------------- 1 | create_makefile("rubyvm") 2 | -------------------------------------------------------------------------------- /ruby/ext/sdbm/_sdbm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/sdbm/_sdbm.c -------------------------------------------------------------------------------- /ruby/ext/sdbm/depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/sdbm/depend -------------------------------------------------------------------------------- /ruby/ext/sdbm/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/sdbm/init.c -------------------------------------------------------------------------------- /ruby/ext/sdbm/sdbm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/sdbm/sdbm.h -------------------------------------------------------------------------------- /ruby/ext/socket/.document: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/socket/.document -------------------------------------------------------------------------------- /ruby/ext/socket/ancdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/socket/ancdata.c -------------------------------------------------------------------------------- /ruby/ext/socket/depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/socket/depend -------------------------------------------------------------------------------- /ruby/ext/socket/ifaddr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/socket/ifaddr.c -------------------------------------------------------------------------------- /ruby/ext/socket/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/socket/init.c -------------------------------------------------------------------------------- /ruby/ext/socket/option.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/socket/option.c -------------------------------------------------------------------------------- /ruby/ext/socket/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/socket/socket.c -------------------------------------------------------------------------------- /ruby/ext/stringio/depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/stringio/depend -------------------------------------------------------------------------------- /ruby/ext/strscan/depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/strscan/depend -------------------------------------------------------------------------------- /ruby/ext/syslog/depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/syslog/depend -------------------------------------------------------------------------------- /ruby/ext/syslog/syslog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/syslog/syslog.c -------------------------------------------------------------------------------- /ruby/ext/win32/extconf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/win32/extconf.rb -------------------------------------------------------------------------------- /ruby/ext/win32ole/depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/win32ole/depend -------------------------------------------------------------------------------- /ruby/ext/zlib/depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/zlib/depend -------------------------------------------------------------------------------- /ruby/ext/zlib/extconf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/zlib/extconf.rb -------------------------------------------------------------------------------- /ruby/ext/zlib/zlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ext/zlib/zlib.c -------------------------------------------------------------------------------- /ruby/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/file.c -------------------------------------------------------------------------------- /ruby/gc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/gc.c -------------------------------------------------------------------------------- /ruby/gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/gc.h -------------------------------------------------------------------------------- /ruby/gem_prelude.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/gem_prelude.rb -------------------------------------------------------------------------------- /ruby/gems/bundled_gems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/gems/bundled_gems -------------------------------------------------------------------------------- /ruby/gems/did_you_mean-1.1.0/.ruby-version: -------------------------------------------------------------------------------- 1 | 2.4.0-dev 2 | -------------------------------------------------------------------------------- /ruby/gems/net-telnet-0.1.1/lib/net-telnet.rb: -------------------------------------------------------------------------------- 1 | require 'net/telnet' 2 | -------------------------------------------------------------------------------- /ruby/gems/rake-12.0.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/gems/rake-12.0.0.gem -------------------------------------------------------------------------------- /ruby/golf_prelude.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/golf_prelude.c -------------------------------------------------------------------------------- /ruby/golf_prelude.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/golf_prelude.rb -------------------------------------------------------------------------------- /ruby/goruby.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/goruby.c -------------------------------------------------------------------------------- /ruby/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/hash.c -------------------------------------------------------------------------------- /ruby/ia64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ia64.s -------------------------------------------------------------------------------- /ruby/id.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/id.c -------------------------------------------------------------------------------- /ruby/id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/id.h -------------------------------------------------------------------------------- /ruby/id_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/id_table.c -------------------------------------------------------------------------------- /ruby/id_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/id_table.h -------------------------------------------------------------------------------- /ruby/include/autoupdate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/include/autoupdate.h -------------------------------------------------------------------------------- /ruby/include/enclose_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/include/enclose_io.h -------------------------------------------------------------------------------- /ruby/include/ruby.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/include/ruby.h -------------------------------------------------------------------------------- /ruby/include/ruby/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/include/ruby/debug.h -------------------------------------------------------------------------------- /ruby/include/ruby/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/include/ruby/io.h -------------------------------------------------------------------------------- /ruby/include/ruby/re.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/include/ruby/re.h -------------------------------------------------------------------------------- /ruby/include/ruby/regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/include/ruby/regex.h -------------------------------------------------------------------------------- /ruby/include/ruby/ruby.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/include/ruby/ruby.h -------------------------------------------------------------------------------- /ruby/include/ruby/st.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/include/ruby/st.h -------------------------------------------------------------------------------- /ruby/include/ruby/subst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/include/ruby/subst.h -------------------------------------------------------------------------------- /ruby/include/ruby/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/include/ruby/util.h -------------------------------------------------------------------------------- /ruby/include/ruby/vm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/include/ruby/vm.h -------------------------------------------------------------------------------- /ruby/include/ruby/win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/include/ruby/win32.h -------------------------------------------------------------------------------- /ruby/include/squash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/include/squash.h -------------------------------------------------------------------------------- /ruby/include/squash/dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/include/squash/dir.h -------------------------------------------------------------------------------- /ruby/include/squash/fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/include/squash/fs.h -------------------------------------------------------------------------------- /ruby/inits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/inits.c -------------------------------------------------------------------------------- /ruby/insns.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/insns.def -------------------------------------------------------------------------------- /ruby/insns.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/insns.inc -------------------------------------------------------------------------------- /ruby/insns_info.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/insns_info.inc -------------------------------------------------------------------------------- /ruby/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/internal.h -------------------------------------------------------------------------------- /ruby/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/io.c -------------------------------------------------------------------------------- /ruby/iseq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/iseq.c -------------------------------------------------------------------------------- /ruby/iseq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/iseq.h -------------------------------------------------------------------------------- /ruby/known_errors.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/known_errors.inc -------------------------------------------------------------------------------- /ruby/lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lex.c -------------------------------------------------------------------------------- /ruby/lex.c.blt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lex.c.blt -------------------------------------------------------------------------------- /ruby/lib/English.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/English.rb -------------------------------------------------------------------------------- /ruby/lib/abbrev.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/abbrev.rb -------------------------------------------------------------------------------- /ruby/lib/base64.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/base64.rb -------------------------------------------------------------------------------- /ruby/lib/benchmark.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/benchmark.rb -------------------------------------------------------------------------------- /ruby/lib/cgi.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/cgi.rb -------------------------------------------------------------------------------- /ruby/lib/cgi/cookie.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/cgi/cookie.rb -------------------------------------------------------------------------------- /ruby/lib/cgi/core.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/cgi/core.rb -------------------------------------------------------------------------------- /ruby/lib/cgi/html.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/cgi/html.rb -------------------------------------------------------------------------------- /ruby/lib/cgi/session.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/cgi/session.rb -------------------------------------------------------------------------------- /ruby/lib/cgi/util.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/cgi/util.rb -------------------------------------------------------------------------------- /ruby/lib/cmath.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/cmath.rb -------------------------------------------------------------------------------- /ruby/lib/csv.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/csv.rb -------------------------------------------------------------------------------- /ruby/lib/debug.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/debug.rb -------------------------------------------------------------------------------- /ruby/lib/delegate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/delegate.rb -------------------------------------------------------------------------------- /ruby/lib/drb.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: false 2 | require 'drb/drb' 3 | 4 | -------------------------------------------------------------------------------- /ruby/lib/drb/acl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/drb/acl.rb -------------------------------------------------------------------------------- /ruby/lib/drb/drb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/drb/drb.rb -------------------------------------------------------------------------------- /ruby/lib/drb/eq.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/drb/eq.rb -------------------------------------------------------------------------------- /ruby/lib/drb/extserv.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/drb/extserv.rb -------------------------------------------------------------------------------- /ruby/lib/drb/extservm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/drb/extservm.rb -------------------------------------------------------------------------------- /ruby/lib/drb/gw.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/drb/gw.rb -------------------------------------------------------------------------------- /ruby/lib/drb/observer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/drb/observer.rb -------------------------------------------------------------------------------- /ruby/lib/drb/ssl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/drb/ssl.rb -------------------------------------------------------------------------------- /ruby/lib/drb/unix.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/drb/unix.rb -------------------------------------------------------------------------------- /ruby/lib/e2mmap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/e2mmap.rb -------------------------------------------------------------------------------- /ruby/lib/erb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/erb.rb -------------------------------------------------------------------------------- /ruby/lib/fileutils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/fileutils.rb -------------------------------------------------------------------------------- /ruby/lib/find.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/find.rb -------------------------------------------------------------------------------- /ruby/lib/forwardable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/forwardable.rb -------------------------------------------------------------------------------- /ruby/lib/getoptlong.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/getoptlong.rb -------------------------------------------------------------------------------- /ruby/lib/ipaddr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/ipaddr.rb -------------------------------------------------------------------------------- /ruby/lib/irb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/irb.rb -------------------------------------------------------------------------------- /ruby/lib/irb/cmd/chws.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/irb/cmd/chws.rb -------------------------------------------------------------------------------- /ruby/lib/irb/cmd/fork.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/irb/cmd/fork.rb -------------------------------------------------------------------------------- /ruby/lib/irb/cmd/help.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/irb/cmd/help.rb -------------------------------------------------------------------------------- /ruby/lib/irb/cmd/load.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/irb/cmd/load.rb -------------------------------------------------------------------------------- /ruby/lib/irb/cmd/nop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/irb/cmd/nop.rb -------------------------------------------------------------------------------- /ruby/lib/irb/context.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/irb/context.rb -------------------------------------------------------------------------------- /ruby/lib/irb/frame.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/irb/frame.rb -------------------------------------------------------------------------------- /ruby/lib/irb/help.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/irb/help.rb -------------------------------------------------------------------------------- /ruby/lib/irb/init.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/irb/init.rb -------------------------------------------------------------------------------- /ruby/lib/irb/inspector.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/irb/inspector.rb -------------------------------------------------------------------------------- /ruby/lib/irb/lc/.document: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/irb/lc/.document -------------------------------------------------------------------------------- /ruby/lib/irb/lc/error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/irb/lc/error.rb -------------------------------------------------------------------------------- /ruby/lib/irb/locale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/irb/locale.rb -------------------------------------------------------------------------------- /ruby/lib/irb/notifier.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/irb/notifier.rb -------------------------------------------------------------------------------- /ruby/lib/irb/ruby-lex.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/irb/ruby-lex.rb -------------------------------------------------------------------------------- /ruby/lib/irb/slex.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/irb/slex.rb -------------------------------------------------------------------------------- /ruby/lib/irb/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/irb/version.rb -------------------------------------------------------------------------------- /ruby/lib/irb/workspace.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/irb/workspace.rb -------------------------------------------------------------------------------- /ruby/lib/irb/xmp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/irb/xmp.rb -------------------------------------------------------------------------------- /ruby/lib/logger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/logger.rb -------------------------------------------------------------------------------- /ruby/lib/mathn.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/mathn.rb -------------------------------------------------------------------------------- /ruby/lib/matrix.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/matrix.rb -------------------------------------------------------------------------------- /ruby/lib/mkmf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/mkmf.rb -------------------------------------------------------------------------------- /ruby/lib/monitor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/monitor.rb -------------------------------------------------------------------------------- /ruby/lib/mutex_m.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/mutex_m.rb -------------------------------------------------------------------------------- /ruby/lib/net/ftp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/net/ftp.rb -------------------------------------------------------------------------------- /ruby/lib/net/http.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/net/http.rb -------------------------------------------------------------------------------- /ruby/lib/net/https.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/net/https.rb -------------------------------------------------------------------------------- /ruby/lib/net/imap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/net/imap.rb -------------------------------------------------------------------------------- /ruby/lib/net/pop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/net/pop.rb -------------------------------------------------------------------------------- /ruby/lib/net/protocol.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/net/protocol.rb -------------------------------------------------------------------------------- /ruby/lib/net/smtp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/net/smtp.rb -------------------------------------------------------------------------------- /ruby/lib/observer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/observer.rb -------------------------------------------------------------------------------- /ruby/lib/open-uri.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/open-uri.rb -------------------------------------------------------------------------------- /ruby/lib/open3.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/open3.rb -------------------------------------------------------------------------------- /ruby/lib/optionparser.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: false 2 | require_relative 'optparse' 3 | -------------------------------------------------------------------------------- /ruby/lib/optparse.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/optparse.rb -------------------------------------------------------------------------------- /ruby/lib/optparse/ac.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/optparse/ac.rb -------------------------------------------------------------------------------- /ruby/lib/optparse/date.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/optparse/date.rb -------------------------------------------------------------------------------- /ruby/lib/optparse/time.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/optparse/time.rb -------------------------------------------------------------------------------- /ruby/lib/ostruct.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/ostruct.rb -------------------------------------------------------------------------------- /ruby/lib/pp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/pp.rb -------------------------------------------------------------------------------- /ruby/lib/prime.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/prime.rb -------------------------------------------------------------------------------- /ruby/lib/profile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/profile.rb -------------------------------------------------------------------------------- /ruby/lib/profiler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/profiler.rb -------------------------------------------------------------------------------- /ruby/lib/pstore.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/pstore.rb -------------------------------------------------------------------------------- /ruby/lib/rbconfig/.document: -------------------------------------------------------------------------------- 1 | # these files are obsolete 2 | -------------------------------------------------------------------------------- /ruby/lib/rdoc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/rdoc.rb -------------------------------------------------------------------------------- /ruby/lib/rdoc/.document: -------------------------------------------------------------------------------- 1 | *.rb 2 | -------------------------------------------------------------------------------- /ruby/lib/rdoc/alias.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/rdoc/alias.rb -------------------------------------------------------------------------------- /ruby/lib/rdoc/attr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/rdoc/attr.rb -------------------------------------------------------------------------------- /ruby/lib/rdoc/erbio.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/rdoc/erbio.rb -------------------------------------------------------------------------------- /ruby/lib/rdoc/generator/template/darkfish/.document: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ruby/lib/rdoc/generator/template/json_index/.document: -------------------------------------------------------------------------------- 1 | # ignore all files in this directory 2 | -------------------------------------------------------------------------------- /ruby/lib/rdoc/i18n.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/rdoc/i18n.rb -------------------------------------------------------------------------------- /ruby/lib/rdoc/mixin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/rdoc/mixin.rb -------------------------------------------------------------------------------- /ruby/lib/rdoc/rd.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/rdoc/rd.rb -------------------------------------------------------------------------------- /ruby/lib/rdoc/rdoc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/rdoc/rdoc.rb -------------------------------------------------------------------------------- /ruby/lib/rdoc/ri.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/rdoc/ri.rb -------------------------------------------------------------------------------- /ruby/lib/rdoc/stats.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/rdoc/stats.rb -------------------------------------------------------------------------------- /ruby/lib/rdoc/store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/rdoc/store.rb -------------------------------------------------------------------------------- /ruby/lib/rdoc/task.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/rdoc/task.rb -------------------------------------------------------------------------------- /ruby/lib/rdoc/text.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/rdoc/text.rb -------------------------------------------------------------------------------- /ruby/lib/resolv.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/resolv.rb -------------------------------------------------------------------------------- /ruby/lib/rexml/node.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/rexml/node.rb -------------------------------------------------------------------------------- /ruby/lib/rexml/text.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/rexml/text.rb -------------------------------------------------------------------------------- /ruby/lib/rinda/ring.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/rinda/ring.rb -------------------------------------------------------------------------------- /ruby/lib/rss.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/rss.rb -------------------------------------------------------------------------------- /ruby/lib/rss/0.9.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/rss/0.9.rb -------------------------------------------------------------------------------- /ruby/lib/rss/1.0.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/rss/1.0.rb -------------------------------------------------------------------------------- /ruby/lib/rss/2.0.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/rss/2.0.rb -------------------------------------------------------------------------------- /ruby/lib/rss/atom.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/rss/atom.rb -------------------------------------------------------------------------------- /ruby/lib/rss/image.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/rss/image.rb -------------------------------------------------------------------------------- /ruby/lib/rss/itunes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/rss/itunes.rb -------------------------------------------------------------------------------- /ruby/lib/rss/maker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/rss/maker.rb -------------------------------------------------------------------------------- /ruby/lib/rss/parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/rss/parser.rb -------------------------------------------------------------------------------- /ruby/lib/rss/rss.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/rss/rss.rb -------------------------------------------------------------------------------- /ruby/lib/rss/slash.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/rss/slash.rb -------------------------------------------------------------------------------- /ruby/lib/rss/utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/rss/utils.rb -------------------------------------------------------------------------------- /ruby/lib/rss/xml.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/rss/xml.rb -------------------------------------------------------------------------------- /ruby/lib/rubygems.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/rubygems.rb -------------------------------------------------------------------------------- /ruby/lib/rubygems/ssl_certs/.document: -------------------------------------------------------------------------------- 1 | # Ignore all files in this directory 2 | -------------------------------------------------------------------------------- /ruby/lib/scanf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/scanf.rb -------------------------------------------------------------------------------- /ruby/lib/set.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/set.rb -------------------------------------------------------------------------------- /ruby/lib/shell.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/shell.rb -------------------------------------------------------------------------------- /ruby/lib/shellwords.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/shellwords.rb -------------------------------------------------------------------------------- /ruby/lib/singleton.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/singleton.rb -------------------------------------------------------------------------------- /ruby/lib/sync.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/sync.rb -------------------------------------------------------------------------------- /ruby/lib/tempfile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/tempfile.rb -------------------------------------------------------------------------------- /ruby/lib/thwait.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/thwait.rb -------------------------------------------------------------------------------- /ruby/lib/time.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/time.rb -------------------------------------------------------------------------------- /ruby/lib/timeout.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/timeout.rb -------------------------------------------------------------------------------- /ruby/lib/tmpdir.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/tmpdir.rb -------------------------------------------------------------------------------- /ruby/lib/tracer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/tracer.rb -------------------------------------------------------------------------------- /ruby/lib/tsort.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/tsort.rb -------------------------------------------------------------------------------- /ruby/lib/ubygems.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/ubygems.rb -------------------------------------------------------------------------------- /ruby/lib/un.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/un.rb -------------------------------------------------------------------------------- /ruby/lib/uri.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/uri.rb -------------------------------------------------------------------------------- /ruby/lib/uri/common.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/uri/common.rb -------------------------------------------------------------------------------- /ruby/lib/uri/ftp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/uri/ftp.rb -------------------------------------------------------------------------------- /ruby/lib/uri/http.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/uri/http.rb -------------------------------------------------------------------------------- /ruby/lib/uri/https.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/uri/https.rb -------------------------------------------------------------------------------- /ruby/lib/uri/ldap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/uri/ldap.rb -------------------------------------------------------------------------------- /ruby/lib/uri/ldaps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/uri/ldaps.rb -------------------------------------------------------------------------------- /ruby/lib/uri/mailto.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/uri/mailto.rb -------------------------------------------------------------------------------- /ruby/lib/weakref.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/weakref.rb -------------------------------------------------------------------------------- /ruby/lib/webrick.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/webrick.rb -------------------------------------------------------------------------------- /ruby/lib/yaml.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/yaml.rb -------------------------------------------------------------------------------- /ruby/lib/yaml/dbm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/yaml/dbm.rb -------------------------------------------------------------------------------- /ruby/lib/yaml/store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/lib/yaml/store.rb -------------------------------------------------------------------------------- /ruby/load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/load.c -------------------------------------------------------------------------------- /ruby/loadpath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/loadpath.c -------------------------------------------------------------------------------- /ruby/localeinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/localeinit.c -------------------------------------------------------------------------------- /ruby/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/main.c -------------------------------------------------------------------------------- /ruby/man/erb.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/man/erb.1 -------------------------------------------------------------------------------- /ruby/man/goruby.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/man/goruby.1 -------------------------------------------------------------------------------- /ruby/man/irb.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/man/irb.1 -------------------------------------------------------------------------------- /ruby/man/ri.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/man/ri.1 -------------------------------------------------------------------------------- /ruby/man/ruby.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/man/ruby.1 -------------------------------------------------------------------------------- /ruby/marshal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/marshal.c -------------------------------------------------------------------------------- /ruby/math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/math.c -------------------------------------------------------------------------------- /ruby/method.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/method.h -------------------------------------------------------------------------------- /ruby/miniinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/miniinit.c -------------------------------------------------------------------------------- /ruby/miniprelude.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/miniprelude.c -------------------------------------------------------------------------------- /ruby/misc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/misc/README -------------------------------------------------------------------------------- /ruby/misc/inf-ruby.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/misc/inf-ruby.el -------------------------------------------------------------------------------- /ruby/misc/rdoc-mode.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/misc/rdoc-mode.el -------------------------------------------------------------------------------- /ruby/misc/ruby-mode.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/misc/ruby-mode.el -------------------------------------------------------------------------------- /ruby/misc/rubydb2x.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/misc/rubydb2x.el -------------------------------------------------------------------------------- /ruby/misc/rubydb3x.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/misc/rubydb3x.el -------------------------------------------------------------------------------- /ruby/missing/acosh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/missing/acosh.c -------------------------------------------------------------------------------- /ruby/missing/alloca.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/missing/alloca.c -------------------------------------------------------------------------------- /ruby/missing/cbrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/missing/cbrt.c -------------------------------------------------------------------------------- /ruby/missing/close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/missing/close.c -------------------------------------------------------------------------------- /ruby/missing/crypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/missing/crypt.c -------------------------------------------------------------------------------- /ruby/missing/crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/missing/crypt.h -------------------------------------------------------------------------------- /ruby/missing/dup2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/missing/dup2.c -------------------------------------------------------------------------------- /ruby/missing/erf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/missing/erf.c -------------------------------------------------------------------------------- /ruby/missing/ffs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/missing/ffs.c -------------------------------------------------------------------------------- /ruby/missing/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/missing/file.h -------------------------------------------------------------------------------- /ruby/missing/fileblocks.c: -------------------------------------------------------------------------------- 1 | /* dummy for autoconf */ 2 | -------------------------------------------------------------------------------- /ruby/missing/finite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/missing/finite.c -------------------------------------------------------------------------------- /ruby/missing/flock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/missing/flock.c -------------------------------------------------------------------------------- /ruby/missing/hypot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/missing/hypot.c -------------------------------------------------------------------------------- /ruby/missing/isinf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/missing/isinf.c -------------------------------------------------------------------------------- /ruby/missing/isnan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/missing/isnan.c -------------------------------------------------------------------------------- /ruby/missing/memcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/missing/memcmp.c -------------------------------------------------------------------------------- /ruby/missing/memmove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/missing/memmove.c -------------------------------------------------------------------------------- /ruby/missing/signbit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/missing/signbit.c -------------------------------------------------------------------------------- /ruby/missing/strchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/missing/strchr.c -------------------------------------------------------------------------------- /ruby/missing/strlcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/missing/strlcat.c -------------------------------------------------------------------------------- /ruby/missing/strlcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/missing/strlcpy.c -------------------------------------------------------------------------------- /ruby/missing/strstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/missing/strstr.c -------------------------------------------------------------------------------- /ruby/missing/strtol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/missing/strtol.c -------------------------------------------------------------------------------- /ruby/missing/tgamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/missing/tgamma.c -------------------------------------------------------------------------------- /ruby/nacl/README.nacl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/nacl/README.nacl -------------------------------------------------------------------------------- /ruby/nacl/dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/nacl/dirent.h -------------------------------------------------------------------------------- /ruby/nacl/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/nacl/example.html -------------------------------------------------------------------------------- /ruby/nacl/package.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/nacl/package.rb -------------------------------------------------------------------------------- /ruby/nacl/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/nacl/resource.h -------------------------------------------------------------------------------- /ruby/nacl/select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/nacl/select.h -------------------------------------------------------------------------------- /ruby/nacl/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/nacl/signal.h -------------------------------------------------------------------------------- /ruby/nacl/stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/nacl/stat.h -------------------------------------------------------------------------------- /ruby/nacl/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/nacl/unistd.h -------------------------------------------------------------------------------- /ruby/nacl/utime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/nacl/utime.h -------------------------------------------------------------------------------- /ruby/node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/node.c -------------------------------------------------------------------------------- /ruby/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/node.h -------------------------------------------------------------------------------- /ruby/node_name.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/node_name.inc -------------------------------------------------------------------------------- /ruby/numeric.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/numeric.c -------------------------------------------------------------------------------- /ruby/object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/object.c -------------------------------------------------------------------------------- /ruby/opt_sc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/opt_sc.inc -------------------------------------------------------------------------------- /ruby/optinsn.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/optinsn.inc -------------------------------------------------------------------------------- /ruby/optunifs.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/optunifs.inc -------------------------------------------------------------------------------- /ruby/pack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/pack.c -------------------------------------------------------------------------------- /ruby/parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/parse.c -------------------------------------------------------------------------------- /ruby/parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/parse.h -------------------------------------------------------------------------------- /ruby/parse.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/parse.y -------------------------------------------------------------------------------- /ruby/prelude.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/prelude.c -------------------------------------------------------------------------------- /ruby/prelude.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/prelude.rb -------------------------------------------------------------------------------- /ruby/probes.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/probes.d -------------------------------------------------------------------------------- /ruby/probes.dmyh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/probes.dmyh -------------------------------------------------------------------------------- /ruby/probes_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/probes_helper.h -------------------------------------------------------------------------------- /ruby/proc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/proc.c -------------------------------------------------------------------------------- /ruby/process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/process.c -------------------------------------------------------------------------------- /ruby/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/random.c -------------------------------------------------------------------------------- /ruby/range.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/range.c -------------------------------------------------------------------------------- /ruby/rational.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/rational.c -------------------------------------------------------------------------------- /ruby/re.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/re.c -------------------------------------------------------------------------------- /ruby/regcomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/regcomp.c -------------------------------------------------------------------------------- /ruby/regenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/regenc.c -------------------------------------------------------------------------------- /ruby/regenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/regenc.h -------------------------------------------------------------------------------- /ruby/regerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/regerror.c -------------------------------------------------------------------------------- /ruby/regexec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/regexec.c -------------------------------------------------------------------------------- /ruby/regint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/regint.h -------------------------------------------------------------------------------- /ruby/regparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/regparse.c -------------------------------------------------------------------------------- /ruby/regparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/regparse.h -------------------------------------------------------------------------------- /ruby/regsyntax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/regsyntax.c -------------------------------------------------------------------------------- /ruby/revision.h: -------------------------------------------------------------------------------- 1 | #define RUBY_REVISION 58053 2 | -------------------------------------------------------------------------------- /ruby/ruby-runner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ruby-runner.c -------------------------------------------------------------------------------- /ruby/ruby.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ruby.c -------------------------------------------------------------------------------- /ruby/ruby_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ruby_assert.h -------------------------------------------------------------------------------- /ruby/ruby_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/ruby_atomic.h -------------------------------------------------------------------------------- /ruby/rubystub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/rubystub.c -------------------------------------------------------------------------------- /ruby/safe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/safe.c -------------------------------------------------------------------------------- /ruby/sample/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/sample/README -------------------------------------------------------------------------------- /ruby/sample/cal.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/sample/cal.rb -------------------------------------------------------------------------------- /ruby/sample/cbreak.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/sample/cbreak.rb -------------------------------------------------------------------------------- /ruby/sample/clnt.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/sample/clnt.rb -------------------------------------------------------------------------------- /ruby/sample/dir.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/sample/dir.rb -------------------------------------------------------------------------------- /ruby/sample/drb/acl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/sample/drb/acl.rb -------------------------------------------------------------------------------- /ruby/sample/eval.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/sample/eval.rb -------------------------------------------------------------------------------- /ruby/sample/export.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/sample/export.rb -------------------------------------------------------------------------------- /ruby/sample/exyacc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/sample/exyacc.rb -------------------------------------------------------------------------------- /ruby/sample/fact.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/sample/fact.rb -------------------------------------------------------------------------------- /ruby/sample/fib.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/sample/fib.awk -------------------------------------------------------------------------------- /ruby/sample/fib.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/sample/fib.pl -------------------------------------------------------------------------------- /ruby/sample/fib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/sample/fib.py -------------------------------------------------------------------------------- /ruby/sample/fib.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/sample/fib.rb -------------------------------------------------------------------------------- /ruby/sample/fib.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/sample/fib.scm -------------------------------------------------------------------------------- /ruby/sample/freq.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/sample/freq.rb -------------------------------------------------------------------------------- /ruby/sample/from.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/sample/from.rb -------------------------------------------------------------------------------- /ruby/sample/less.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/sample/less.rb -------------------------------------------------------------------------------- /ruby/sample/list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/sample/list.rb -------------------------------------------------------------------------------- /ruby/sample/list2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/sample/list2.rb -------------------------------------------------------------------------------- /ruby/sample/list3.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/sample/list3.rb -------------------------------------------------------------------------------- /ruby/sample/mine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/sample/mine.rb -------------------------------------------------------------------------------- /ruby/sample/mkproto.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/sample/mkproto.rb -------------------------------------------------------------------------------- /ruby/sample/mpart.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/sample/mpart.rb -------------------------------------------------------------------------------- /ruby/sample/observ.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/sample/observ.rb -------------------------------------------------------------------------------- /ruby/sample/occur.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/sample/occur.pl -------------------------------------------------------------------------------- /ruby/sample/occur.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/sample/occur.rb -------------------------------------------------------------------------------- /ruby/sample/occur2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/sample/occur2.rb -------------------------------------------------------------------------------- /ruby/sample/open3.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/sample/open3.rb -------------------------------------------------------------------------------- /ruby/sample/philos.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/sample/philos.rb -------------------------------------------------------------------------------- /ruby/sample/pi.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/sample/pi.rb -------------------------------------------------------------------------------- /ruby/sample/pstore.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/sample/pstore.rb -------------------------------------------------------------------------------- /ruby/sample/pty/shl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/sample/pty/shl.rb -------------------------------------------------------------------------------- /ruby/sample/rcs.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/sample/rcs.awk -------------------------------------------------------------------------------- /ruby/sample/rcs.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/sample/rcs.dat -------------------------------------------------------------------------------- /ruby/sample/rcs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/sample/rcs.rb -------------------------------------------------------------------------------- /ruby/sample/sieve.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/sample/sieve.rb -------------------------------------------------------------------------------- /ruby/sample/svr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/sample/svr.rb -------------------------------------------------------------------------------- /ruby/sample/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/sample/test.rb -------------------------------------------------------------------------------- /ruby/sample/time.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/sample/time.rb -------------------------------------------------------------------------------- /ruby/sample/timeout.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/sample/timeout.rb -------------------------------------------------------------------------------- /ruby/sample/trick2013/shinh/authors.markdown: -------------------------------------------------------------------------------- 1 | Shinichiro Hamaji 2 | Japan, .jp 3 | -------------------------------------------------------------------------------- /ruby/sample/trojan.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/sample/trojan.rb -------------------------------------------------------------------------------- /ruby/sample/tsvr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/sample/tsvr.rb -------------------------------------------------------------------------------- /ruby/sample/uumerge.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/sample/uumerge.rb -------------------------------------------------------------------------------- /ruby/sample/weakref.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/sample/weakref.rb -------------------------------------------------------------------------------- /ruby/signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/signal.c -------------------------------------------------------------------------------- /ruby/siphash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/siphash.c -------------------------------------------------------------------------------- /ruby/siphash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/siphash.h -------------------------------------------------------------------------------- /ruby/sparc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/sparc.c -------------------------------------------------------------------------------- /ruby/spec/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/spec/README -------------------------------------------------------------------------------- /ruby/sprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/sprintf.c -------------------------------------------------------------------------------- /ruby/squash_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/squash_cache.c -------------------------------------------------------------------------------- /ruby/squash_dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/squash_dir.c -------------------------------------------------------------------------------- /ruby/squash_dirent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/squash_dirent.c -------------------------------------------------------------------------------- /ruby/squash_extract.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/squash_extract.c -------------------------------------------------------------------------------- /ruby/squash_fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/squash_fd.c -------------------------------------------------------------------------------- /ruby/squash_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/squash_file.c -------------------------------------------------------------------------------- /ruby/squash_fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/squash_fs.c -------------------------------------------------------------------------------- /ruby/squash_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/squash_hash.c -------------------------------------------------------------------------------- /ruby/squash_mutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/squash_mutex.c -------------------------------------------------------------------------------- /ruby/squash_private.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/squash_private.c -------------------------------------------------------------------------------- /ruby/squash_readlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/squash_readlink.c -------------------------------------------------------------------------------- /ruby/squash_scandir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/squash_scandir.c -------------------------------------------------------------------------------- /ruby/squash_stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/squash_stack.c -------------------------------------------------------------------------------- /ruby/squash_stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/squash_stat.c -------------------------------------------------------------------------------- /ruby/squash_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/squash_table.c -------------------------------------------------------------------------------- /ruby/squash_traverse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/squash_traverse.c -------------------------------------------------------------------------------- /ruby/squash_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/squash_util.c -------------------------------------------------------------------------------- /ruby/st.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/st.c -------------------------------------------------------------------------------- /ruby/strftime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/strftime.c -------------------------------------------------------------------------------- /ruby/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/string.c -------------------------------------------------------------------------------- /ruby/struct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/struct.c -------------------------------------------------------------------------------- /ruby/symbol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/symbol.c -------------------------------------------------------------------------------- /ruby/symbol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/symbol.h -------------------------------------------------------------------------------- /ruby/test/colors: -------------------------------------------------------------------------------- 1 | pass=36;7 2 | fail=31;1;7 3 | skip=33;1 4 | -------------------------------------------------------------------------------- /ruby/test/csv/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/test/csv/base.rb -------------------------------------------------------------------------------- /ruby/test/drb/ut_eq.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/test/drb/ut_eq.rb -------------------------------------------------------------------------------- /ruby/test/excludes/TestISeq.rb: -------------------------------------------------------------------------------- 1 | exclude :test_parent_iseq_mark, "time consuming test" 2 | -------------------------------------------------------------------------------- /ruby/test/json/fixtures/fail11.json: -------------------------------------------------------------------------------- 1 | {"Illegal expression": 1 + 2} -------------------------------------------------------------------------------- /ruby/test/json/fixtures/fail12.json: -------------------------------------------------------------------------------- 1 | {"Illegal invocation": alert()} -------------------------------------------------------------------------------- /ruby/test/json/fixtures/fail13.json: -------------------------------------------------------------------------------- 1 | {"Numbers cannot have leading zeroes": 013} -------------------------------------------------------------------------------- /ruby/test/json/fixtures/fail14.json: -------------------------------------------------------------------------------- 1 | {"Numbers cannot be hex": 0x14} -------------------------------------------------------------------------------- /ruby/test/json/fixtures/fail19.json: -------------------------------------------------------------------------------- 1 | {"Missing colon" null} -------------------------------------------------------------------------------- /ruby/test/json/fixtures/fail2.json: -------------------------------------------------------------------------------- 1 | ["Unclosed array" -------------------------------------------------------------------------------- /ruby/test/json/fixtures/fail20.json: -------------------------------------------------------------------------------- 1 | {"Double colon":: null} -------------------------------------------------------------------------------- /ruby/test/json/fixtures/fail21.json: -------------------------------------------------------------------------------- 1 | {"Comma instead of colon", null} -------------------------------------------------------------------------------- /ruby/test/json/fixtures/fail22.json: -------------------------------------------------------------------------------- 1 | ["Colon instead of comma": false] -------------------------------------------------------------------------------- /ruby/test/json/fixtures/fail23.json: -------------------------------------------------------------------------------- 1 | ["Bad value", truth] -------------------------------------------------------------------------------- /ruby/test/json/fixtures/fail24.json: -------------------------------------------------------------------------------- 1 | ['single quote'] -------------------------------------------------------------------------------- /ruby/test/json/fixtures/fail25.json: -------------------------------------------------------------------------------- 1 | ["tab character in string "] 2 | -------------------------------------------------------------------------------- /ruby/test/json/fixtures/fail27.json: -------------------------------------------------------------------------------- 1 | ["line 2 | break"] -------------------------------------------------------------------------------- /ruby/test/json/fixtures/fail28.json: -------------------------------------------------------------------------------- 1 | ["line\ 2 | break"] -------------------------------------------------------------------------------- /ruby/test/json/fixtures/fail4.json: -------------------------------------------------------------------------------- 1 | ["extra comma",] -------------------------------------------------------------------------------- /ruby/test/json/fixtures/fail5.json: -------------------------------------------------------------------------------- 1 | ["double extra comma",,] -------------------------------------------------------------------------------- /ruby/test/json/fixtures/fail6.json: -------------------------------------------------------------------------------- 1 | [ , "<-- missing value"] -------------------------------------------------------------------------------- /ruby/test/json/fixtures/fail7.json: -------------------------------------------------------------------------------- 1 | ["Comma after the close"], -------------------------------------------------------------------------------- /ruby/test/json/fixtures/fail8.json: -------------------------------------------------------------------------------- 1 | ["Extra close"]] -------------------------------------------------------------------------------- /ruby/test/json/fixtures/fail9.json: -------------------------------------------------------------------------------- 1 | {"Extra comma": true,} -------------------------------------------------------------------------------- /ruby/test/json/fixtures/pass15.json: -------------------------------------------------------------------------------- 1 | ["Illegal backslash escape: \x15"] -------------------------------------------------------------------------------- /ruby/test/json/fixtures/pass16.json: -------------------------------------------------------------------------------- 1 | ["Illegal backslash escape: \'"] -------------------------------------------------------------------------------- /ruby/test/json/fixtures/pass17.json: -------------------------------------------------------------------------------- 1 | ["Illegal backslash escape: \017"] -------------------------------------------------------------------------------- /ruby/test/mkmf/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/test/mkmf/base.rb -------------------------------------------------------------------------------- /ruby/test/rdoc/README: -------------------------------------------------------------------------------- 1 | you don't have to 2 | -------------------------------------------------------------------------------- /ruby/test/rdoc/hidden.zip.txt: -------------------------------------------------------------------------------- 1 | PK 2 | -------------------------------------------------------------------------------- /ruby/test/rdoc/test.txt: -------------------------------------------------------------------------------- 1 | test file 2 | -------------------------------------------------------------------------------- /ruby/test/rss/dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/test/rss/dot.png -------------------------------------------------------------------------------- /ruby/test/rubygems/bad_rake.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | exit 1 3 | -------------------------------------------------------------------------------- /ruby/test/rubygems/foo/discover.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | -------------------------------------------------------------------------------- /ruby/test/rubygems/good_rake.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | exit 0 3 | -------------------------------------------------------------------------------- /ruby/test/rubygems/sff/discover.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | -------------------------------------------------------------------------------- /ruby/test/runner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/test/runner.rb -------------------------------------------------------------------------------- /ruby/test/test_find.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/test/test_find.rb -------------------------------------------------------------------------------- /ruby/test/test_pp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/test/test_pp.rb -------------------------------------------------------------------------------- /ruby/test/test_pty.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/test/test_pty.rb -------------------------------------------------------------------------------- /ruby/test/test_set.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/test/test_set.rb -------------------------------------------------------------------------------- /ruby/test/test_time.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/test/test_time.rb -------------------------------------------------------------------------------- /ruby/test/webrick/.htaccess: -------------------------------------------------------------------------------- 1 | this file should not be published. 2 | -------------------------------------------------------------------------------- /ruby/thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/thread.c -------------------------------------------------------------------------------- /ruby/thread_pthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/thread_pthread.c -------------------------------------------------------------------------------- /ruby/thread_pthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/thread_pthread.h -------------------------------------------------------------------------------- /ruby/thread_sync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/thread_sync.c -------------------------------------------------------------------------------- /ruby/thread_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/thread_win32.c -------------------------------------------------------------------------------- /ruby/thread_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/thread_win32.h -------------------------------------------------------------------------------- /ruby/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/time.c -------------------------------------------------------------------------------- /ruby/timev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/timev.h -------------------------------------------------------------------------------- /ruby/tool/asm_parse.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/tool/asm_parse.rb -------------------------------------------------------------------------------- /ruby/tool/bisect.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/tool/bisect.sh -------------------------------------------------------------------------------- /ruby/tool/checksum.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/tool/checksum.rb -------------------------------------------------------------------------------- /ruby/tool/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/tool/config.guess -------------------------------------------------------------------------------- /ruby/tool/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/tool/config.sub -------------------------------------------------------------------------------- /ruby/tool/eval.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/tool/eval.rb -------------------------------------------------------------------------------- /ruby/tool/extlibs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/tool/extlibs.rb -------------------------------------------------------------------------------- /ruby/tool/fake.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/tool/fake.rb -------------------------------------------------------------------------------- /ruby/tool/id2token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/tool/id2token.rb -------------------------------------------------------------------------------- /ruby/tool/ifchange: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/tool/ifchange -------------------------------------------------------------------------------- /ruby/tool/insns2vm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/tool/insns2vm.rb -------------------------------------------------------------------------------- /ruby/tool/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/tool/install-sh -------------------------------------------------------------------------------- /ruby/tool/jisx0208.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/tool/jisx0208.rb -------------------------------------------------------------------------------- /ruby/tool/mdoc2man.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/tool/mdoc2man.rb -------------------------------------------------------------------------------- /ruby/tool/merger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/tool/merger.rb -------------------------------------------------------------------------------- /ruby/tool/mkconfig.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/tool/mkconfig.rb -------------------------------------------------------------------------------- /ruby/tool/node_name.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/tool/node_name.rb -------------------------------------------------------------------------------- /ruby/tool/parse.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/tool/parse.rb -------------------------------------------------------------------------------- /ruby/tool/rbinstall.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/tool/rbinstall.rb -------------------------------------------------------------------------------- /ruby/tool/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/tool/release.sh -------------------------------------------------------------------------------- /ruby/tool/rmdirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/tool/rmdirs -------------------------------------------------------------------------------- /ruby/tool/runruby.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/tool/runruby.rb -------------------------------------------------------------------------------- /ruby/tool/update-deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/tool/update-deps -------------------------------------------------------------------------------- /ruby/tool/vcs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/tool/vcs.rb -------------------------------------------------------------------------------- /ruby/tool/vpath.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/tool/vpath.rb -------------------------------------------------------------------------------- /ruby/tool/vtlh.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/tool/vtlh.rb -------------------------------------------------------------------------------- /ruby/tool/ytab.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/tool/ytab.sed -------------------------------------------------------------------------------- /ruby/transcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/transcode.c -------------------------------------------------------------------------------- /ruby/transcode_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/transcode_data.h -------------------------------------------------------------------------------- /ruby/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/util.c -------------------------------------------------------------------------------- /ruby/variable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/variable.c -------------------------------------------------------------------------------- /ruby/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/version.c -------------------------------------------------------------------------------- /ruby/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/version.h -------------------------------------------------------------------------------- /ruby/vm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/vm.c -------------------------------------------------------------------------------- /ruby/vm.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/vm.inc -------------------------------------------------------------------------------- /ruby/vm_args.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/vm_args.c -------------------------------------------------------------------------------- /ruby/vm_backtrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/vm_backtrace.c -------------------------------------------------------------------------------- /ruby/vm_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/vm_core.h -------------------------------------------------------------------------------- /ruby/vm_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/vm_debug.h -------------------------------------------------------------------------------- /ruby/vm_dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/vm_dump.c -------------------------------------------------------------------------------- /ruby/vm_eval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/vm_eval.c -------------------------------------------------------------------------------- /ruby/vm_exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/vm_exec.c -------------------------------------------------------------------------------- /ruby/vm_exec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/vm_exec.h -------------------------------------------------------------------------------- /ruby/vm_insnhelper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/vm_insnhelper.c -------------------------------------------------------------------------------- /ruby/vm_insnhelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/vm_insnhelper.h -------------------------------------------------------------------------------- /ruby/vm_method.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/vm_method.c -------------------------------------------------------------------------------- /ruby/vm_opts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/vm_opts.h -------------------------------------------------------------------------------- /ruby/vm_trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/vm_trace.c -------------------------------------------------------------------------------- /ruby/vmtc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/vmtc.inc -------------------------------------------------------------------------------- /ruby/vsnprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/vsnprintf.c -------------------------------------------------------------------------------- /ruby/win32/dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/win32/dir.h -------------------------------------------------------------------------------- /ruby/win32/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/win32/file.c -------------------------------------------------------------------------------- /ruby/win32/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/win32/file.h -------------------------------------------------------------------------------- /ruby/win32/resource.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/win32/resource.rb -------------------------------------------------------------------------------- /ruby/win32/rm.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/win32/rm.bat -------------------------------------------------------------------------------- /ruby/win32/rmdirs.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/win32/rmdirs.bat -------------------------------------------------------------------------------- /ruby/win32/rtname.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/win32/rtname.cmd -------------------------------------------------------------------------------- /ruby/win32/setup.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/win32/setup.mak -------------------------------------------------------------------------------- /ruby/win32/win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/win32/win32.c -------------------------------------------------------------------------------- /ruby/win32/winmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/ruby/win32/winmain.c -------------------------------------------------------------------------------- /tests/ruby-compiler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/tests/ruby-compiler -------------------------------------------------------------------------------- /vendor/gdbm/ABOUT-NLS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/gdbm/ABOUT-NLS -------------------------------------------------------------------------------- /vendor/gdbm/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/gdbm/AUTHORS -------------------------------------------------------------------------------- /vendor/gdbm/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/gdbm/COPYING -------------------------------------------------------------------------------- /vendor/gdbm/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/gdbm/ChangeLog -------------------------------------------------------------------------------- /vendor/gdbm/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/gdbm/INSTALL -------------------------------------------------------------------------------- /vendor/gdbm/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/gdbm/NEWS -------------------------------------------------------------------------------- /vendor/gdbm/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/gdbm/README -------------------------------------------------------------------------------- /vendor/gdbm/THANKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/gdbm/THANKS -------------------------------------------------------------------------------- /vendor/gdbm/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/gdbm/aclocal.m4 -------------------------------------------------------------------------------- /vendor/gdbm/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/gdbm/configure -------------------------------------------------------------------------------- /vendor/gdbm/doc/gdbm.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/gdbm/doc/gdbm.3 -------------------------------------------------------------------------------- /vendor/gdbm/m4/nls.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/gdbm/m4/nls.m4 -------------------------------------------------------------------------------- /vendor/gdbm/m4/po.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/gdbm/m4/po.m4 -------------------------------------------------------------------------------- /vendor/gdbm/po/LINGUAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/gdbm/po/LINGUAS -------------------------------------------------------------------------------- /vendor/gdbm/po/da.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/gdbm/po/da.gmo -------------------------------------------------------------------------------- /vendor/gdbm/po/da.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/gdbm/po/da.po -------------------------------------------------------------------------------- /vendor/gdbm/po/de.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/gdbm/po/de.gmo -------------------------------------------------------------------------------- /vendor/gdbm/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/gdbm/po/de.po -------------------------------------------------------------------------------- /vendor/gdbm/po/eo.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/gdbm/po/eo.gmo -------------------------------------------------------------------------------- /vendor/gdbm/po/eo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/gdbm/po/eo.po -------------------------------------------------------------------------------- /vendor/gdbm/po/fi.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/gdbm/po/fi.gmo -------------------------------------------------------------------------------- /vendor/gdbm/po/fi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/gdbm/po/fi.po -------------------------------------------------------------------------------- /vendor/gdbm/po/fr.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/gdbm/po/fr.gmo -------------------------------------------------------------------------------- /vendor/gdbm/po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/gdbm/po/fr.po -------------------------------------------------------------------------------- /vendor/gdbm/po/ja.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/gdbm/po/ja.gmo -------------------------------------------------------------------------------- /vendor/gdbm/po/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/gdbm/po/ja.po -------------------------------------------------------------------------------- /vendor/gdbm/po/pl.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/gdbm/po/pl.gmo -------------------------------------------------------------------------------- /vendor/gdbm/po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/gdbm/po/pl.po -------------------------------------------------------------------------------- /vendor/gdbm/po/sr.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/gdbm/po/sr.gmo -------------------------------------------------------------------------------- /vendor/gdbm/po/sr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/gdbm/po/sr.po -------------------------------------------------------------------------------- /vendor/gdbm/po/stamp-po: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /vendor/gdbm/po/uk.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/gdbm/po/uk.gmo -------------------------------------------------------------------------------- /vendor/gdbm/po/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/gdbm/po/uk.po -------------------------------------------------------------------------------- /vendor/gdbm/po/vi.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/gdbm/po/vi.gmo -------------------------------------------------------------------------------- /vendor/gdbm/po/vi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/gdbm/po/vi.po -------------------------------------------------------------------------------- /vendor/gdbm/src/err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/gdbm/src/err.c -------------------------------------------------------------------------------- /vendor/gdbm/src/gram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/gdbm/src/gram.c -------------------------------------------------------------------------------- /vendor/gdbm/src/gram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/gdbm/src/gram.h -------------------------------------------------------------------------------- /vendor/gdbm/src/gram.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/gdbm/src/gram.y -------------------------------------------------------------------------------- /vendor/gdbm/src/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/gdbm/src/hash.c -------------------------------------------------------------------------------- /vendor/gdbm/src/lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/gdbm/src/lex.c -------------------------------------------------------------------------------- /vendor/gdbm/src/lex.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/gdbm/src/lex.l -------------------------------------------------------------------------------- /vendor/gdbm/src/lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/gdbm/src/lock.c -------------------------------------------------------------------------------- /vendor/gdbm/src/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/gdbm/src/mem.c -------------------------------------------------------------------------------- /vendor/gdbm/src/mmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/gdbm/src/mmap.c -------------------------------------------------------------------------------- /vendor/gdbm/src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/gdbm/src/util.c -------------------------------------------------------------------------------- /vendor/gdbm/src/var.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/gdbm/src/var.c -------------------------------------------------------------------------------- /vendor/libffi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/libffi/LICENSE -------------------------------------------------------------------------------- /vendor/libffi/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/libffi/README -------------------------------------------------------------------------------- /vendor/libffi/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/libffi/compile -------------------------------------------------------------------------------- /vendor/libffi/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/libffi/depcomp -------------------------------------------------------------------------------- /vendor/libffi/mdate-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/libffi/mdate-sh -------------------------------------------------------------------------------- /vendor/libffi/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/libffi/missing -------------------------------------------------------------------------------- /vendor/libffi/msvcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/libffi/msvcc.sh -------------------------------------------------------------------------------- /vendor/libffi/testsuite/config/default.exp: -------------------------------------------------------------------------------- 1 | load_lib "standard.exp" 2 | -------------------------------------------------------------------------------- /vendor/ncurses/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/ncurses/AUTHORS -------------------------------------------------------------------------------- /vendor/ncurses/Ada95/package/debian/compat: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /vendor/ncurses/Ada95/package/debian/docs: -------------------------------------------------------------------------------- 1 | README 2 | -------------------------------------------------------------------------------- /vendor/ncurses/Ada95/package/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /vendor/ncurses/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/ncurses/COPYING -------------------------------------------------------------------------------- /vendor/ncurses/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/ncurses/INSTALL -------------------------------------------------------------------------------- /vendor/ncurses/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/ncurses/NEWS -------------------------------------------------------------------------------- /vendor/ncurses/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/ncurses/README -------------------------------------------------------------------------------- /vendor/ncurses/TO-DO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/ncurses/TO-DO -------------------------------------------------------------------------------- /vendor/ncurses/VERSION: -------------------------------------------------------------------------------- 1 | 5:0:9 6.0 20150808 2 | -------------------------------------------------------------------------------- /vendor/ncurses/dist.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/ncurses/dist.mk -------------------------------------------------------------------------------- /vendor/ncurses/package/debian-mingw/compat: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /vendor/ncurses/package/debian-mingw/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /vendor/ncurses/package/debian-mingw64/compat: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /vendor/ncurses/package/debian-mingw64/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /vendor/ncurses/package/debian/compat: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /vendor/ncurses/package/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /vendor/ncurses/test/package/debian-mingw/compat: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /vendor/ncurses/test/package/debian-mingw/docs: -------------------------------------------------------------------------------- 1 | README 2 | -------------------------------------------------------------------------------- /vendor/ncurses/test/package/debian-mingw/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /vendor/ncurses/test/package/debian-mingw64/compat: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /vendor/ncurses/test/package/debian-mingw64/docs: -------------------------------------------------------------------------------- 1 | README 2 | -------------------------------------------------------------------------------- /vendor/ncurses/test/package/debian-mingw64/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /vendor/ncurses/test/package/debian/compat: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /vendor/ncurses/test/package/debian/docs: -------------------------------------------------------------------------------- 1 | README 2 | -------------------------------------------------------------------------------- /vendor/ncurses/test/package/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /vendor/openssl/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/openssl/AUTHORS -------------------------------------------------------------------------------- /vendor/openssl/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/openssl/CHANGES -------------------------------------------------------------------------------- /vendor/openssl/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/openssl/FAQ -------------------------------------------------------------------------------- /vendor/openssl/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/openssl/INSTALL -------------------------------------------------------------------------------- /vendor/openssl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/openssl/LICENSE -------------------------------------------------------------------------------- /vendor/openssl/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/openssl/NEWS -------------------------------------------------------------------------------- /vendor/openssl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/openssl/README -------------------------------------------------------------------------------- /vendor/openssl/README.FIPS: -------------------------------------------------------------------------------- 1 | This release does not support a FIPS 140-2 validated module. 2 | -------------------------------------------------------------------------------- /vendor/openssl/apps/ca-cert.srl: -------------------------------------------------------------------------------- 1 | 07 2 | -------------------------------------------------------------------------------- /vendor/openssl/apps/demoCA/serial: -------------------------------------------------------------------------------- 1 | 011E 2 | -------------------------------------------------------------------------------- /vendor/openssl/apps/demoSRP/srp_verifier.txt.attr: -------------------------------------------------------------------------------- 1 | unique_subject = yes 2 | -------------------------------------------------------------------------------- /vendor/openssl/apps/pca-cert.srl: -------------------------------------------------------------------------------- 1 | 07 2 | -------------------------------------------------------------------------------- /vendor/openssl/apps/server.srl: -------------------------------------------------------------------------------- 1 | 01 2 | -------------------------------------------------------------------------------- /vendor/openssl/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/openssl/config -------------------------------------------------------------------------------- /vendor/openssl/demos/pkcs12/README: -------------------------------------------------------------------------------- 1 | PKCS#12 demo applications 2 | 3 | Written by Steve Henson. 4 | -------------------------------------------------------------------------------- /vendor/openssl/e_os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/openssl/e_os.h -------------------------------------------------------------------------------- /vendor/openssl/test/d2i-tests/bad-int-pad0.der: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /vendor/openssl/test/d2i-tests/int0.der: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /vendor/openssl/test/d2i-tests/int1.der: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /vendor/openssl/test/recipes/04-test_pem_data/wellknown: -------------------------------------------------------------------------------- 1 | wellknown 2 | -------------------------------------------------------------------------------- /vendor/openssl/test/ssl-tests/16-certstatus.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/readline/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/readline/NEWS -------------------------------------------------------------------------------- /vendor/readline/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/readline/README -------------------------------------------------------------------------------- /vendor/readline/USAGE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/readline/USAGE -------------------------------------------------------------------------------- /vendor/readline/bind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/readline/bind.c -------------------------------------------------------------------------------- /vendor/readline/kill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/readline/kill.c -------------------------------------------------------------------------------- /vendor/readline/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/readline/misc.c -------------------------------------------------------------------------------- /vendor/readline/nls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/readline/nls.c -------------------------------------------------------------------------------- /vendor/readline/patchlevel: -------------------------------------------------------------------------------- 1 | # Do not edit -- exists only for use by patch 2 | 3 | 0 4 | -------------------------------------------------------------------------------- /vendor/readline/tcap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/readline/tcap.h -------------------------------------------------------------------------------- /vendor/readline/text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/readline/text.c -------------------------------------------------------------------------------- /vendor/readline/undo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/readline/undo.c -------------------------------------------------------------------------------- /vendor/readline/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/readline/util.c -------------------------------------------------------------------------------- /vendor/yaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/yaml/LICENSE -------------------------------------------------------------------------------- /vendor/yaml/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/yaml/README -------------------------------------------------------------------------------- /vendor/yaml/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/yaml/aclocal.m4 -------------------------------------------------------------------------------- /vendor/yaml/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/yaml/configure -------------------------------------------------------------------------------- /vendor/yaml/src/api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/yaml/src/api.c -------------------------------------------------------------------------------- /vendor/yaml/win32/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | EXTRA_DIST = config.h 3 | 4 | -------------------------------------------------------------------------------- /vendor/zlib/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/zlib/ChangeLog -------------------------------------------------------------------------------- /vendor/zlib/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/zlib/FAQ -------------------------------------------------------------------------------- /vendor/zlib/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/zlib/INDEX -------------------------------------------------------------------------------- /vendor/zlib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/zlib/Makefile -------------------------------------------------------------------------------- /vendor/zlib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/zlib/README -------------------------------------------------------------------------------- /vendor/zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/zlib/adler32.c -------------------------------------------------------------------------------- /vendor/zlib/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/zlib/compress.c -------------------------------------------------------------------------------- /vendor/zlib/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/zlib/configure -------------------------------------------------------------------------------- /vendor/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/zlib/crc32.c -------------------------------------------------------------------------------- /vendor/zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/zlib/crc32.h -------------------------------------------------------------------------------- /vendor/zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/zlib/deflate.c -------------------------------------------------------------------------------- /vendor/zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/zlib/deflate.h -------------------------------------------------------------------------------- /vendor/zlib/gzclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/zlib/gzclose.c -------------------------------------------------------------------------------- /vendor/zlib/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/zlib/gzguts.h -------------------------------------------------------------------------------- /vendor/zlib/gzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/zlib/gzlib.c -------------------------------------------------------------------------------- /vendor/zlib/gzread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/zlib/gzread.c -------------------------------------------------------------------------------- /vendor/zlib/gzwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/zlib/gzwrite.c -------------------------------------------------------------------------------- /vendor/zlib/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/zlib/infback.c -------------------------------------------------------------------------------- /vendor/zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/zlib/inffast.c -------------------------------------------------------------------------------- /vendor/zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/zlib/inffast.h -------------------------------------------------------------------------------- /vendor/zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/zlib/inffixed.h -------------------------------------------------------------------------------- /vendor/zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/zlib/inflate.c -------------------------------------------------------------------------------- /vendor/zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/zlib/inflate.h -------------------------------------------------------------------------------- /vendor/zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/zlib/inftrees.c -------------------------------------------------------------------------------- /vendor/zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/zlib/inftrees.h -------------------------------------------------------------------------------- /vendor/zlib/old/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/zlib/old/README -------------------------------------------------------------------------------- /vendor/zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/zlib/trees.c -------------------------------------------------------------------------------- /vendor/zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/zlib/trees.h -------------------------------------------------------------------------------- /vendor/zlib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/zlib/uncompr.c -------------------------------------------------------------------------------- /vendor/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/zlib/zconf.h -------------------------------------------------------------------------------- /vendor/zlib/zconf.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/zlib/zconf.h.in -------------------------------------------------------------------------------- /vendor/zlib/zlib.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/zlib/zlib.3 -------------------------------------------------------------------------------- /vendor/zlib/zlib.3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/zlib/zlib.3.pdf -------------------------------------------------------------------------------- /vendor/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/zlib/zlib.h -------------------------------------------------------------------------------- /vendor/zlib/zlib.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/zlib/zlib.map -------------------------------------------------------------------------------- /vendor/zlib/zlib.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/zlib/zlib.pc.in -------------------------------------------------------------------------------- /vendor/zlib/zlib2ansi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/zlib/zlib2ansi -------------------------------------------------------------------------------- /vendor/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/zlib/zutil.c -------------------------------------------------------------------------------- /vendor/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadiqmmm/ruby-compiler/HEAD/vendor/zlib/zutil.h --------------------------------------------------------------------------------