├── .clang-format ├── .clang-tidy ├── .gitattributes ├── .gitignore ├── LICENSE.md ├── MAINTENANCE-TERMS.md ├── MEMORY_BUGS.md ├── Makefile.in ├── NEWS.md ├── NOTICE.md ├── README.md ├── VERSION.txt ├── bcl.pc.in ├── benchmarks ├── bc │ ├── add.bc │ ├── arrays.bc │ ├── arrays_and_constants.bc │ ├── bitfuncs.bc │ ├── constants.bc │ ├── divide.bc │ ├── functions.bc │ ├── irand_long.bc │ ├── irand_short.bc │ ├── lib.bc │ ├── multiply.bc │ ├── newton_raphson_div_large.bc │ ├── newton_raphson_div_small.bc │ ├── newton_raphson_sqrt_large.bc │ ├── newton_raphson_sqrt_small.bc │ ├── postfix_incdec.bc │ ├── strings.bc │ └── subtract.bc └── dc │ └── modexp.dc ├── compile_flags.txt ├── configure ├── configure.sh ├── gen ├── bc_help.txt ├── dc_help.txt ├── lib.bc ├── lib2.bc ├── strgen.c └── strgen.sh ├── include ├── args.h ├── bc.h ├── bcl.h ├── dc.h ├── file.h ├── history.h ├── lang.h ├── lex.h ├── library.h ├── num.h ├── opt.h ├── ossfuzz.h ├── parse.h ├── program.h ├── rand.h ├── read.h ├── status.h ├── vector.h └── vm.h ├── locales ├── de_AT.ISO8859-1.msg ├── de_AT.ISO8859-15.msg ├── de_AT.UTF-8.msg ├── de_AT.utf8.msg ├── de_CH.ISO8859-1.msg ├── de_CH.ISO8859-15.msg ├── de_CH.UTF-8.msg ├── de_CH.utf8.msg ├── de_DE.ISO8859-1.msg ├── de_DE.ISO8859-15.msg ├── de_DE.UTF-8.msg ├── de_DE.utf8.msg ├── en_AU.ISO8859-1.msg ├── en_AU.ISO8859-15.msg ├── en_AU.US-ASCII.msg ├── en_AU.UTF-8.msg ├── en_AU.utf8.msg ├── en_CA.ISO8859-1.msg ├── en_CA.ISO8859-15.msg ├── en_CA.US-ASCII.msg ├── en_CA.UTF-8.msg ├── en_CA.utf8.msg ├── en_GB.ISO8859-1.msg ├── en_GB.ISO8859-15.msg ├── en_GB.US-ASCII.msg ├── en_GB.UTF-8.msg ├── en_GB.utf8.msg ├── en_IE.ISO8859-1.msg ├── en_IE.ISO8859-15.msg ├── en_IE.US_ASCII.msg ├── en_IE.UTF-8.msg ├── en_IE.utf8.msg ├── en_NZ.ISO8859-1.msg ├── en_NZ.ISO8859-15.msg ├── en_NZ.US-ASCII.msg ├── en_NZ.UTF-8.msg ├── en_NZ.utf8.msg ├── en_US.ISO8859-1.msg ├── en_US.ISO8859-15.msg ├── en_US.US-ASCII.msg ├── en_US.US_ASCII.msg ├── en_US.UTF-8.msg ├── en_US.msg ├── en_US.utf8.msg ├── es_ES.ISO8859-1.msg ├── es_ES.ISO8859-15.msg ├── es_ES.UTF-8.msg ├── es_ES.utf8.msg ├── fr_BE.ISO8859-1.msg ├── fr_BE.ISO8859-15.msg ├── fr_BE.UTF-8.msg ├── fr_BE.utf8.msg ├── fr_CA.ISO8859-1.msg ├── fr_CA.ISO8859-15.msg ├── fr_CA.UTF-8.msg ├── fr_CA.utf8.msg ├── fr_CH.ISO8859-1.msg ├── fr_CH.ISO8859-15.msg ├── fr_CH.UTF-8.msg ├── fr_CH.utf8.msg ├── fr_FR.ISO8859-1.msg ├── fr_FR.ISO8859-15.msg ├── fr_FR.UTF-8.msg ├── fr_FR.utf8.msg ├── ja_JP.UTF-8.msg ├── ja_JP.eucJP.msg ├── ja_JP.utf8.msg ├── nl_BE.ISO8859-1.msg ├── nl_BE.ISO8859-15.msg ├── nl_NL.ISO8859-1.msg ├── nl_NL.ISO8859-15.msg ├── nl_NL.UTF-8.msg ├── nl_NL.utf8.msg ├── pl_PL.ISO8859-2.msg ├── pl_PL.UTF-8.msg ├── pl_PL.utf8.msg ├── pt_BR.ISO8859-1.msg ├── pt_BR.ISO8859-15.msg ├── pt_BR.UTF-8.msg ├── pt_BR.utf8.msg ├── pt_PT.ISO8859-1.msg ├── pt_PT.ISO8859-15.msg ├── pt_PT.UTF-8.msg ├── pt_PT.utf8.msg ├── ru_RU.CP1251.msg ├── ru_RU.CP866.msg ├── ru_RU.ISO8859-5.msg ├── ru_RU.KOI8-R.msg ├── ru_RU.UTF-8.msg ├── ru_RU.utf8.msg ├── zh_CN.GB18030.msg ├── zh_CN.GB2312.msg ├── zh_CN.GBK.msg ├── zh_CN.UTF-8.msg ├── zh_CN.eucCN.msg └── zh_CN.utf8.msg ├── manuals ├── algorithms.md ├── bc.1.md.in ├── bc │ ├── A.1 │ ├── A.1.md │ ├── E.1 │ ├── E.1.md │ ├── EH.1 │ ├── EH.1.md │ ├── EHN.1 │ ├── EHN.1.md │ ├── EN.1 │ ├── EN.1.md │ ├── H.1 │ ├── H.1.md │ ├── HN.1 │ ├── HN.1.md │ ├── N.1 │ └── N.1.md ├── bcl.3 ├── bcl.3.md ├── benchmarks.md ├── build.md ├── dc.1.md.in ├── dc │ ├── A.1 │ ├── A.1.md │ ├── E.1 │ ├── E.1.md │ ├── EH.1 │ ├── EH.1.md │ ├── EHN.1 │ ├── EHN.1.md │ ├── EN.1 │ ├── EN.1.md │ ├── H.1 │ ├── H.1.md │ ├── HN.1 │ ├── HN.1.md │ ├── N.1 │ └── N.1.md ├── development.md ├── header.txt ├── header_bc.txt ├── header_bcl.txt ├── header_dc.txt └── release.md ├── project ├── README.md ├── gitea.db ├── github_issues.json ├── github_prs.json └── issue10.md ├── scripts ├── afl.py ├── alloc.sh ├── benchmark.sh ├── bitfuncgen.c ├── exec-install.sh ├── format.sh ├── functions.sh ├── fuzz_prep.sh ├── github.pkg.yao ├── github.yao ├── karatsuba.py ├── link.sh ├── lint.sh ├── locale_install.sh ├── locale_uninstall.sh ├── manpage.sh ├── ministat.c ├── os.c ├── package.sh ├── radamsa.sh ├── radamsa.txt ├── randmath.py ├── release.pkg.yao ├── release.yao ├── release_flags_rig.txt ├── release_settings_make.txt ├── release_settings_rig.txt ├── safe-install.sh ├── sqrt_frac_guess.bc ├── sqrt_int_guess.bc ├── sqrt_random.bc ├── sqrt_random.sh ├── test_settings.sh └── test_settings.txt ├── src ├── args.c ├── bc.c ├── bc_fuzzer.c ├── bc_lex.c ├── bc_parse.c ├── data.c ├── dc.c ├── dc_fuzzer.c ├── dc_lex.c ├── dc_parse.c ├── file.c ├── history.c ├── lang.c ├── lex.c ├── library.c ├── main.c ├── num.c ├── opt.c ├── parse.c ├── program.c ├── rand.c ├── read.c ├── vector.c └── vm.c ├── tests ├── all.sh ├── all.txt ├── bc │ ├── abs.txt │ ├── abs_results.txt │ ├── add.txt │ ├── add_results.txt │ ├── all.txt │ ├── arctangent.txt │ ├── arctangent_results.txt │ ├── arrays.txt │ ├── arrays_results.txt │ ├── asciify_array.txt │ ├── asciify_array_results.txt │ ├── assignments.txt │ ├── assignments_results.txt │ ├── bitfuncs.txt │ ├── bitfuncs_results.txt │ ├── boolean.txt │ ├── boolean_results.txt │ ├── comp.txt │ ├── comp_results.txt │ ├── cosine.txt │ ├── cosine_results.txt │ ├── decimal.txt │ ├── decimal_results.txt │ ├── divide.txt │ ├── divide_results.txt │ ├── divmod.txt │ ├── divmod_results.txt │ ├── engineering.txt │ ├── engineering_results.txt │ ├── errors.txt │ ├── errors │ │ ├── 01.txt │ │ ├── 02.txt │ │ ├── 03.txt │ │ ├── 04.txt │ │ ├── 05.txt │ │ ├── 06.txt │ │ ├── 07.txt │ │ ├── 08.txt │ │ ├── 09.txt │ │ ├── 10.txt │ │ ├── 11.txt │ │ ├── 12.txt │ │ ├── 13.txt │ │ ├── 14.txt │ │ ├── 15.txt │ │ ├── 16.txt │ │ ├── 17.txt │ │ ├── 18.txt │ │ ├── 19.txt │ │ ├── 20.txt │ │ ├── 21.txt │ │ ├── 22.txt │ │ ├── 23.txt │ │ ├── 24.txt │ │ ├── 25.txt │ │ ├── 26.txt │ │ ├── 27.txt │ │ ├── 28.txt │ │ ├── 29.txt │ │ ├── 30.txt │ │ ├── 31.txt │ │ ├── 32.txt │ │ ├── 33.txt │ │ ├── 34.txt │ │ ├── 35.txt │ │ ├── 36.txt │ │ ├── 37.txt │ │ ├── 38.txt │ │ └── 39.txt │ ├── exponent.txt │ ├── exponent_results.txt │ ├── fib.txt │ ├── fib_results.txt │ ├── functions.txt │ ├── functions_results.txt │ ├── globals.txt │ ├── globals_results.txt │ ├── is_number.txt │ ├── is_number_results.txt │ ├── is_string.txt │ ├── is_string_results.txt │ ├── leadingzero.txt │ ├── leadingzero_results.txt │ ├── length.txt │ ├── length_results.txt │ ├── letters.txt │ ├── letters_results.txt │ ├── lib2_a2.txt │ ├── lib2_a2_results.txt │ ├── lib2_bytes.txt │ ├── lib2_bytes_results.txt │ ├── lib2_ceil.txt │ ├── lib2_ceil_results.txt │ ├── lib2_d2r.txt │ ├── lib2_d2r_results.txt │ ├── lib2_fac.txt │ ├── lib2_fac_results.txt │ ├── lib2_gcd.txt │ ├── lib2_gcd_results.txt │ ├── lib2_log.txt │ ├── lib2_log_results.txt │ ├── lib2_p.txt │ ├── lib2_p_results.txt │ ├── lib2_perm.txt │ ├── lib2_perm_results.txt │ ├── lib2_pi.txt │ ├── lib2_pi_results.txt │ ├── lib2_r.txt │ ├── lib2_r2d.txt │ ├── lib2_r2d_results.txt │ ├── lib2_r_results.txt │ ├── lib2_rand.txt │ ├── lib2_rand_results.txt │ ├── lib2_root.txt │ ├── lib2_root_results.txt │ ├── lib2_tan.txt │ ├── lib2_tan_results.txt │ ├── lib2_uint.txt │ ├── lib2_uint_results.txt │ ├── line_by_line1.txt │ ├── line_by_line1_results.txt │ ├── line_by_line2.txt │ ├── line_by_line2_results.txt │ ├── line_loop_quit1.txt │ ├── line_loop_quit1_results.txt │ ├── line_loop_quit2.txt │ ├── line_loop_quit2_results.txt │ ├── log.txt │ ├── log_results.txt │ ├── misc.txt │ ├── misc1.txt │ ├── misc1_results.txt │ ├── misc2.txt │ ├── misc2_results.txt │ ├── misc3.txt │ ├── misc3_results.txt │ ├── misc4.txt │ ├── misc4_results.txt │ ├── misc5.txt │ ├── misc5_results.txt │ ├── misc6.txt │ ├── misc6_results.txt │ ├── misc7.txt │ ├── misc7_results.txt │ ├── misc8.txt │ ├── misc8_results.txt │ ├── misc_results.txt │ ├── modexp.txt │ ├── modexp_results.txt │ ├── modulus.txt │ ├── modulus_results.txt │ ├── multiply.txt │ ├── multiply_results.txt │ ├── pi.txt │ ├── pi_results.txt │ ├── places.txt │ ├── places_results.txt │ ├── posix_errors.txt │ ├── power.txt │ ├── power_results.txt │ ├── print2.txt │ ├── print2_results.txt │ ├── rand.txt │ ├── rand_limits.txt │ ├── rand_limits_results.txt │ ├── rand_results.txt │ ├── read.txt │ ├── read_errors.txt │ ├── read_results.txt │ ├── recursive_arrays.txt │ ├── recursive_arrays_results.txt │ ├── scale.txt │ ├── scale_results.txt │ ├── scientific.txt │ ├── scientific_results.txt │ ├── scripts │ │ ├── add_00100.bc │ │ ├── add_00200.bc │ │ ├── add_00300.bc │ │ ├── add_00400.bc │ │ ├── add_00500.bc │ │ ├── add_00600.bc │ │ ├── add_00700.bc │ │ ├── add_00800.bc │ │ ├── add_00900.bc │ │ ├── add_01000.bc │ │ ├── add_01100.bc │ │ ├── add_01200.bc │ │ ├── add_01300.bc │ │ ├── add_01400.bc │ │ ├── add_01500.bc │ │ ├── add_01600.bc │ │ ├── add_01700.bc │ │ ├── add_01800.bc │ │ ├── add_01900.bc │ │ ├── add_02000.bc │ │ ├── add_02100.bc │ │ ├── add_02200.bc │ │ ├── add_02300.bc │ │ ├── add_02400.bc │ │ ├── add_02500.bc │ │ ├── add_02600.bc │ │ ├── add_02700.bc │ │ ├── add_02800.bc │ │ ├── add_02900.bc │ │ ├── add_03000.bc │ │ ├── add_03100.bc │ │ ├── add_03200.bc │ │ ├── add_03300.bc │ │ ├── add_03400.bc │ │ ├── add_03500.bc │ │ ├── add_03600.bc │ │ ├── add_03700.bc │ │ ├── add_03800.bc │ │ ├── add_03900.bc │ │ ├── add_04000.bc │ │ ├── add_04100.bc │ │ ├── add_04200.bc │ │ ├── add_04300.bc │ │ ├── add_04400.bc │ │ ├── add_04500.bc │ │ ├── add_04600.bc │ │ ├── add_04700.bc │ │ ├── add_04800.bc │ │ ├── add_04900.bc │ │ ├── add_05000.bc │ │ ├── add_05100.bc │ │ ├── add_05200.bc │ │ ├── add_05300.bc │ │ ├── add_05400.bc │ │ ├── add_05500.bc │ │ ├── add_05600.bc │ │ ├── add_05700.bc │ │ ├── add_05800.bc │ │ ├── add_05900.bc │ │ ├── add_06000.bc │ │ ├── add_06100.bc │ │ ├── add_06200.bc │ │ ├── add_06300.bc │ │ ├── add_06400.bc │ │ ├── add_06500.bc │ │ ├── add_06600.bc │ │ ├── add_06700.bc │ │ ├── add_06800.bc │ │ ├── add_06900.bc │ │ ├── add_07000.bc │ │ ├── add_07100.bc │ │ ├── add_07200.bc │ │ ├── add_07300.bc │ │ ├── add_07400.bc │ │ ├── add_07500.bc │ │ ├── add_07600.bc │ │ ├── add_07700.bc │ │ ├── add_07800.bc │ │ ├── add_07900.bc │ │ ├── add_08000.bc │ │ ├── add_08100.bc │ │ ├── add_08200.bc │ │ ├── add_08300.bc │ │ ├── add_08400.bc │ │ ├── add_08500.bc │ │ ├── add_08600.bc │ │ ├── add_08700.bc │ │ ├── add_08800.bc │ │ ├── add_08900.bc │ │ ├── add_09000.bc │ │ ├── add_09100.bc │ │ ├── add_09200.bc │ │ ├── add_09300.bc │ │ ├── add_09400.bc │ │ ├── add_09500.bc │ │ ├── add_09600.bc │ │ ├── add_09700.bc │ │ ├── add_09800.bc │ │ ├── add_09900.bc │ │ ├── add_10000.bc │ │ ├── afl1.bc │ │ ├── afl1.txt │ │ ├── all.txt │ │ ├── array.bc │ │ ├── array.txt │ │ ├── array2.bc │ │ ├── array2.txt │ │ ├── atan.bc │ │ ├── atan.txt │ │ ├── bessel.bc │ │ ├── cbrt.txt │ │ ├── divide_00100.bc │ │ ├── divide_00200.bc │ │ ├── divide_00300.bc │ │ ├── divide_00400.bc │ │ ├── divide_00500.bc │ │ ├── divide_00600.bc │ │ ├── divide_00700.bc │ │ ├── divide_00800.bc │ │ ├── divide_00900.bc │ │ ├── divide_01000.bc │ │ ├── divide_01100.bc │ │ ├── divide_01200.bc │ │ ├── divide_01300.bc │ │ ├── divide_01400.bc │ │ ├── divide_01500.bc │ │ ├── divide_01600.bc │ │ ├── divide_01700.bc │ │ ├── divide_01800.bc │ │ ├── divide_01900.bc │ │ ├── divide_02000.bc │ │ ├── divide_02100.bc │ │ ├── divide_02200.bc │ │ ├── divide_02300.bc │ │ ├── divide_02400.bc │ │ ├── divide_02500.bc │ │ ├── divide_02600.bc │ │ ├── divide_02700.bc │ │ ├── divide_02800.bc │ │ ├── divide_02900.bc │ │ ├── divide_03000.bc │ │ ├── divide_03100.bc │ │ ├── divide_03200.bc │ │ ├── divide_03300.bc │ │ ├── divide_03400.bc │ │ ├── divide_03500.bc │ │ ├── divide_03600.bc │ │ ├── divide_03700.bc │ │ ├── divide_03800.bc │ │ ├── divide_03900.bc │ │ ├── divide_04000.bc │ │ ├── divide_04100.bc │ │ ├── divide_04200.bc │ │ ├── divide_04300.bc │ │ ├── divide_04400.bc │ │ ├── divide_04500.bc │ │ ├── divide_04600.bc │ │ ├── divide_04700.bc │ │ ├── divide_04800.bc │ │ ├── divide_04900.bc │ │ ├── divide_05000.bc │ │ ├── divide_05100.bc │ │ ├── divide_05200.bc │ │ ├── divide_05300.bc │ │ ├── divide_05400.bc │ │ ├── divide_05500.bc │ │ ├── divide_05600.bc │ │ ├── divide_05700.bc │ │ ├── divide_05800.bc │ │ ├── divide_05900.bc │ │ ├── divide_06000.bc │ │ ├── divide_06100.bc │ │ ├── divide_06200.bc │ │ ├── divide_06300.bc │ │ ├── divide_06400.bc │ │ ├── divide_06500.bc │ │ ├── divide_06600.bc │ │ ├── divide_06700.bc │ │ ├── divide_06800.bc │ │ ├── divide_06900.bc │ │ ├── divide_07000.bc │ │ ├── divide_07100.bc │ │ ├── divide_07200.bc │ │ ├── divide_07300.bc │ │ ├── divide_07400.bc │ │ ├── divide_07500.bc │ │ ├── divide_07600.bc │ │ ├── divide_07700.bc │ │ ├── divide_07800.bc │ │ ├── divide_07900.bc │ │ ├── divide_08000.bc │ │ ├── divide_08100.bc │ │ ├── divide_08200.bc │ │ ├── divide_08300.bc │ │ ├── divide_08400.bc │ │ ├── divide_08500.bc │ │ ├── divide_08600.bc │ │ ├── divide_08700.bc │ │ ├── divide_08800.bc │ │ ├── divide_08900.bc │ │ ├── divide_09000.bc │ │ ├── divide_09100.bc │ │ ├── divide_09200.bc │ │ ├── divide_09300.bc │ │ ├── divide_09400.bc │ │ ├── divide_09500.bc │ │ ├── divide_09600.bc │ │ ├── divide_09700.bc │ │ ├── divide_09800.bc │ │ ├── divide_09900.bc │ │ ├── divide_10000.bc │ │ ├── functions.bc │ │ ├── functions.txt │ │ ├── globals.bc │ │ ├── globals.txt │ │ ├── i2rand.bc │ │ ├── i2rand.txt │ │ ├── ifs.bc │ │ ├── ifs.txt │ │ ├── ifs2.bc │ │ ├── ifs2.txt │ │ ├── len.bc │ │ ├── len.txt │ │ ├── multiply_00100.bc │ │ ├── multiply_00200.bc │ │ ├── multiply_00300.bc │ │ ├── multiply_00400.bc │ │ ├── multiply_00500.bc │ │ ├── multiply_00600.bc │ │ ├── multiply_00700.bc │ │ ├── multiply_00800.bc │ │ ├── multiply_00900.bc │ │ ├── multiply_01000.bc │ │ ├── multiply_01100.bc │ │ ├── multiply_01200.bc │ │ ├── multiply_01300.bc │ │ ├── multiply_01400.bc │ │ ├── multiply_01500.bc │ │ ├── multiply_01600.bc │ │ ├── multiply_01700.bc │ │ ├── multiply_01800.bc │ │ ├── multiply_01900.bc │ │ ├── multiply_02000.bc │ │ ├── multiply_02100.bc │ │ ├── multiply_02200.bc │ │ ├── multiply_02300.bc │ │ ├── multiply_02400.bc │ │ ├── multiply_02500.bc │ │ ├── multiply_02600.bc │ │ ├── multiply_02700.bc │ │ ├── multiply_02800.bc │ │ ├── multiply_02900.bc │ │ ├── multiply_03000.bc │ │ ├── multiply_03100.bc │ │ ├── multiply_03200.bc │ │ ├── multiply_03300.bc │ │ ├── multiply_03400.bc │ │ ├── multiply_03500.bc │ │ ├── multiply_03600.bc │ │ ├── multiply_03700.bc │ │ ├── multiply_03800.bc │ │ ├── multiply_03900.bc │ │ ├── multiply_04000.bc │ │ ├── multiply_04100.bc │ │ ├── multiply_04200.bc │ │ ├── multiply_04300.bc │ │ ├── multiply_04400.bc │ │ ├── multiply_04500.bc │ │ ├── multiply_04600.bc │ │ ├── multiply_04700.bc │ │ ├── multiply_04800.bc │ │ ├── multiply_04900.bc │ │ ├── multiply_05000.bc │ │ ├── multiply_05100.bc │ │ ├── multiply_05200.bc │ │ ├── multiply_05300.bc │ │ ├── multiply_05400.bc │ │ ├── multiply_05500.bc │ │ ├── multiply_05600.bc │ │ ├── multiply_05700.bc │ │ ├── multiply_05800.bc │ │ ├── multiply_05900.bc │ │ ├── multiply_06000.bc │ │ ├── multiply_06100.bc │ │ ├── multiply_06200.bc │ │ ├── multiply_06300.bc │ │ ├── multiply_06400.bc │ │ ├── multiply_06500.bc │ │ ├── multiply_06600.bc │ │ ├── multiply_06700.bc │ │ ├── multiply_06800.bc │ │ ├── multiply_06900.bc │ │ ├── multiply_07000.bc │ │ ├── multiply_07100.bc │ │ ├── multiply_07200.bc │ │ ├── multiply_07300.bc │ │ ├── multiply_07400.bc │ │ ├── multiply_07500.bc │ │ ├── multiply_07600.bc │ │ ├── multiply_07700.bc │ │ ├── multiply_07800.bc │ │ ├── multiply_07900.bc │ │ ├── multiply_08000.bc │ │ ├── multiply_08100.bc │ │ ├── multiply_08200.bc │ │ ├── multiply_08300.bc │ │ ├── multiply_08400.bc │ │ ├── multiply_08500.bc │ │ ├── multiply_08600.bc │ │ ├── multiply_08700.bc │ │ ├── multiply_08800.bc │ │ ├── multiply_08900.bc │ │ ├── multiply_09000.bc │ │ ├── multiply_09100.bc │ │ ├── multiply_09200.bc │ │ ├── multiply_09300.bc │ │ ├── multiply_09400.bc │ │ ├── multiply_09500.bc │ │ ├── multiply_09600.bc │ │ ├── multiply_09700.bc │ │ ├── multiply_09800.bc │ │ ├── multiply_09900.bc │ │ ├── multiply_10000.bc │ │ ├── parse_02.bc │ │ ├── parse_03.bc │ │ ├── parse_04.bc │ │ ├── parse_05.bc │ │ ├── parse_06.bc │ │ ├── parse_07.bc │ │ ├── parse_08.bc │ │ ├── parse_09.bc │ │ ├── parse_11.bc │ │ ├── parse_12.bc │ │ ├── parse_13.bc │ │ ├── parse_14.bc │ │ ├── parse_15.bc │ │ ├── parse_16.bc │ │ ├── print2.bc │ │ ├── print2.txt │ │ ├── print_002.bc │ │ ├── print_003.bc │ │ ├── print_004.bc │ │ ├── print_005.bc │ │ ├── print_006.bc │ │ ├── print_007.bc │ │ ├── print_008.bc │ │ ├── print_009.bc │ │ ├── print_011.bc │ │ ├── print_012.bc │ │ ├── print_013.bc │ │ ├── print_014.bc │ │ ├── print_015.bc │ │ ├── print_016.bc │ │ ├── print_017.bc │ │ ├── print_018.bc │ │ ├── print_019.bc │ │ ├── print_020.bc │ │ ├── print_021.bc │ │ ├── print_022.bc │ │ ├── print_023.bc │ │ ├── print_024.bc │ │ ├── print_025.bc │ │ ├── print_026.bc │ │ ├── print_027.bc │ │ ├── print_028.bc │ │ ├── print_029.bc │ │ ├── print_030.bc │ │ ├── print_031.bc │ │ ├── print_032.bc │ │ ├── print_033.bc │ │ ├── print_034.bc │ │ ├── print_035.bc │ │ ├── print_036.bc │ │ ├── print_037.bc │ │ ├── print_038.bc │ │ ├── print_039.bc │ │ ├── print_040.bc │ │ ├── print_041.bc │ │ ├── print_042.bc │ │ ├── print_043.bc │ │ ├── print_044.bc │ │ ├── print_045.bc │ │ ├── print_046.bc │ │ ├── print_047.bc │ │ ├── print_048.bc │ │ ├── print_049.bc │ │ ├── print_050.bc │ │ ├── print_051.bc │ │ ├── print_052.bc │ │ ├── print_053.bc │ │ ├── print_054.bc │ │ ├── print_055.bc │ │ ├── print_056.bc │ │ ├── print_057.bc │ │ ├── print_058.bc │ │ ├── print_059.bc │ │ ├── print_060.bc │ │ ├── print_061.bc │ │ ├── print_062.bc │ │ ├── print_063.bc │ │ ├── print_064.bc │ │ ├── print_065.bc │ │ ├── print_066.bc │ │ ├── print_067.bc │ │ ├── print_068.bc │ │ ├── print_069.bc │ │ ├── print_070.bc │ │ ├── print_071.bc │ │ ├── print_072.bc │ │ ├── print_073.bc │ │ ├── print_074.bc │ │ ├── print_075.bc │ │ ├── print_076.bc │ │ ├── print_077.bc │ │ ├── print_078.bc │ │ ├── print_079.bc │ │ ├── print_080.bc │ │ ├── print_081.bc │ │ ├── print_082.bc │ │ ├── print_083.bc │ │ ├── print_084.bc │ │ ├── print_085.bc │ │ ├── print_086.bc │ │ ├── print_087.bc │ │ ├── print_088.bc │ │ ├── print_089.bc │ │ ├── print_090.bc │ │ ├── print_091.bc │ │ ├── print_092.bc │ │ ├── print_093.bc │ │ ├── print_094.bc │ │ ├── print_095.bc │ │ ├── print_096.bc │ │ ├── print_097.bc │ │ ├── print_098.bc │ │ ├── print_099.bc │ │ ├── print_100.bc │ │ ├── rand.bc │ │ ├── rand.txt │ │ ├── references.bc │ │ ├── references.txt │ │ ├── root.bc │ │ ├── root.txt │ │ ├── screen.bc │ │ ├── screen.txt │ │ ├── strings2.bc │ │ ├── subtract_00100.bc │ │ ├── subtract_00200.bc │ │ ├── subtract_00300.bc │ │ ├── subtract_00400.bc │ │ ├── subtract_00500.bc │ │ ├── subtract_00600.bc │ │ ├── subtract_00700.bc │ │ ├── subtract_00800.bc │ │ ├── subtract_00900.bc │ │ ├── subtract_01000.bc │ │ ├── subtract_01100.bc │ │ ├── subtract_01200.bc │ │ ├── subtract_01300.bc │ │ ├── subtract_01400.bc │ │ ├── subtract_01500.bc │ │ ├── subtract_01600.bc │ │ ├── subtract_01700.bc │ │ ├── subtract_01800.bc │ │ ├── subtract_01900.bc │ │ ├── subtract_02000.bc │ │ ├── subtract_02100.bc │ │ ├── subtract_02200.bc │ │ ├── subtract_02300.bc │ │ ├── subtract_02400.bc │ │ ├── subtract_02500.bc │ │ ├── subtract_02600.bc │ │ ├── subtract_02700.bc │ │ ├── subtract_02800.bc │ │ ├── subtract_02900.bc │ │ ├── subtract_03000.bc │ │ ├── subtract_03100.bc │ │ ├── subtract_03200.bc │ │ ├── subtract_03300.bc │ │ ├── subtract_03400.bc │ │ ├── subtract_03500.bc │ │ ├── subtract_03600.bc │ │ ├── subtract_03700.bc │ │ ├── subtract_03800.bc │ │ ├── subtract_03900.bc │ │ ├── subtract_04000.bc │ │ ├── subtract_04100.bc │ │ ├── subtract_04200.bc │ │ ├── subtract_04300.bc │ │ ├── subtract_04400.bc │ │ ├── subtract_04500.bc │ │ ├── subtract_04600.bc │ │ ├── subtract_04700.bc │ │ ├── subtract_04800.bc │ │ ├── subtract_04900.bc │ │ ├── subtract_05000.bc │ │ ├── subtract_05100.bc │ │ ├── subtract_05200.bc │ │ ├── subtract_05300.bc │ │ ├── subtract_05400.bc │ │ ├── subtract_05500.bc │ │ ├── subtract_05600.bc │ │ ├── subtract_05700.bc │ │ ├── subtract_05800.bc │ │ ├── subtract_05900.bc │ │ ├── subtract_06000.bc │ │ ├── subtract_06100.bc │ │ ├── subtract_06200.bc │ │ ├── subtract_06300.bc │ │ ├── subtract_06400.bc │ │ ├── subtract_06500.bc │ │ ├── subtract_06600.bc │ │ ├── subtract_06700.bc │ │ ├── subtract_06800.bc │ │ ├── subtract_06900.bc │ │ ├── subtract_07000.bc │ │ ├── subtract_07100.bc │ │ ├── subtract_07200.bc │ │ ├── subtract_07300.bc │ │ ├── subtract_07400.bc │ │ ├── subtract_07500.bc │ │ ├── subtract_07600.bc │ │ ├── subtract_07700.bc │ │ ├── subtract_07800.bc │ │ ├── subtract_07900.bc │ │ ├── subtract_08000.bc │ │ ├── subtract_08100.bc │ │ ├── subtract_08200.bc │ │ ├── subtract_08300.bc │ │ ├── subtract_08400.bc │ │ ├── subtract_08500.bc │ │ ├── subtract_08600.bc │ │ ├── subtract_08700.bc │ │ ├── subtract_08800.bc │ │ ├── subtract_08900.bc │ │ ├── subtract_09000.bc │ │ ├── subtract_09100.bc │ │ ├── subtract_09200.bc │ │ ├── subtract_09300.bc │ │ ├── subtract_09400.bc │ │ ├── subtract_09500.bc │ │ ├── subtract_09600.bc │ │ ├── subtract_09700.bc │ │ ├── subtract_09800.bc │ │ ├── subtract_09900.bc │ │ └── subtract_10000.bc │ ├── shift.txt │ ├── shift_results.txt │ ├── sine.txt │ ├── sine_results.txt │ ├── sqrt.txt │ ├── sqrt_results.txt │ ├── stdin.txt │ ├── stdin1.txt │ ├── stdin1_results.txt │ ├── stdin2.txt │ ├── stdin2_results.txt │ ├── stdin_results.txt │ ├── strings.txt │ ├── strings_results.txt │ ├── subtract.txt │ ├── subtract_results.txt │ ├── timeconst.sh │ ├── trunc.txt │ ├── trunc_results.txt │ ├── vars.txt │ ├── vars_results.txt │ ├── void.txt │ └── void_results.txt ├── bcl.c ├── dc │ ├── abs.txt │ ├── abs_results.txt │ ├── add.txt │ ├── add_results.txt │ ├── all.txt │ ├── boolean.txt │ ├── boolean_results.txt │ ├── decimal.txt │ ├── decimal_results.txt │ ├── divide.txt │ ├── divide_results.txt │ ├── divmod.txt │ ├── divmod_results.txt │ ├── engineering.txt │ ├── engineering_results.txt │ ├── errors.txt │ ├── errors │ │ ├── 01.txt │ │ ├── 02.txt │ │ ├── 03.txt │ │ ├── 04.txt │ │ ├── 05.txt │ │ ├── 06.txt │ │ ├── 07.txt │ │ ├── 08.txt │ │ ├── 09.txt │ │ ├── 10.txt │ │ ├── 11.txt │ │ ├── 12.txt │ │ ├── 13.txt │ │ ├── 14.txt │ │ ├── 15.txt │ │ ├── 16.txt │ │ ├── 17.txt │ │ ├── 18.txt │ │ ├── 19.txt │ │ ├── 20.txt │ │ ├── 21.txt │ │ ├── 22.txt │ │ ├── 23.txt │ │ ├── 24.txt │ │ ├── 25.txt │ │ ├── 26.txt │ │ ├── 27.txt │ │ ├── 28.txt │ │ ├── 29.txt │ │ ├── 30.txt │ │ ├── 31.txt │ │ ├── 32.txt │ │ └── 33.txt │ ├── exec_stack_len.txt │ ├── exec_stack_len_results.txt │ ├── is_number.txt │ ├── is_number_results.txt │ ├── is_string.txt │ ├── is_string_results.txt │ ├── length.txt │ ├── length_results.txt │ ├── misc.txt │ ├── misc1.txt │ ├── misc1_results.txt │ ├── misc_results.txt │ ├── modexp.txt │ ├── modexp_results.txt │ ├── modulus.txt │ ├── modulus_results.txt │ ├── multiply.txt │ ├── multiply_results.txt │ ├── negate.txt │ ├── negate_results.txt │ ├── places.txt │ ├── places_results.txt │ ├── power.txt │ ├── power_results.txt │ ├── rand.txt │ ├── rand_results.txt │ ├── read.txt │ ├── read_errors.txt │ ├── read_results.txt │ ├── scientific.txt │ ├── scientific_results.txt │ ├── scripts │ │ ├── all.txt │ │ ├── array.dc │ │ ├── array.txt │ │ ├── asciify.dc │ │ ├── asciify.txt │ │ ├── easter.dc │ │ ├── easter.txt │ │ ├── else.dc │ │ ├── else.txt │ │ ├── factorial.dc │ │ ├── factorial.txt │ │ ├── loop.dc │ │ ├── loop.txt │ │ ├── no_clamp.dc │ │ ├── no_clamp.txt │ │ ├── prime.dc │ │ ├── quit.dc │ │ ├── quit.txt │ │ ├── stream.dc │ │ ├── stream.txt │ │ ├── weird.dc │ │ └── weird.txt │ ├── shift.txt │ ├── shift_results.txt │ ├── sqrt.txt │ ├── sqrt_results.txt │ ├── stack_len.txt │ ├── stack_len_results.txt │ ├── stdin.txt │ ├── stdin_results.txt │ ├── strings.txt │ ├── strings_results.txt │ ├── subtract.txt │ ├── subtract_results.txt │ ├── trunc.txt │ ├── trunc_results.txt │ ├── vars.txt │ └── vars_results.txt ├── error.sh ├── errors.sh ├── extra_required.txt ├── fuzzing │ ├── bc_afl.yaml │ ├── bc_afl_continue.yaml │ ├── bc_inputs1 │ │ ├── array.bc │ │ ├── array2.bc │ │ ├── asciify_array.txt │ │ ├── bitfuncs.txt │ │ ├── decimal.txt │ │ ├── functions.bc │ │ ├── len.bc │ │ ├── lib10.txt │ │ ├── lib12.txt │ │ ├── lib15.txt │ │ ├── lib2.txt │ │ ├── lib21.txt │ │ ├── lib3.txt │ │ ├── lib6.txt │ │ ├── line_by_line1.txt │ │ └── line_loop_quit1.txt │ ├── bc_inputs2 │ │ ├── 02.txt │ │ ├── 03.txt │ │ ├── 06.txt │ │ ├── 07.txt │ │ ├── 10.txt │ │ ├── 12.txt │ │ ├── 16.txt │ │ ├── line_by_line2.txt │ │ ├── line_loop_quit2.txt │ │ ├── misc3.txt │ │ ├── modulus.txt │ │ ├── references.bc │ │ └── trunc.txt │ └── dc_inputs │ │ ├── 01.txt │ │ ├── 02.txt │ │ ├── 03.txt │ │ ├── 04.txt │ │ ├── 05.txt │ │ ├── 06.txt │ │ ├── 07.txt │ │ ├── 08.txt │ │ ├── 09.txt │ │ ├── 10.txt │ │ ├── 11.txt │ │ ├── 12.txt │ │ ├── 13.txt │ │ ├── 14.txt │ │ ├── 15.txt │ │ ├── 16.txt │ │ ├── 17.txt │ │ ├── 18.txt │ │ ├── 20.txt │ │ ├── 21.txt │ │ ├── 22.txt │ │ ├── 23.txt │ │ ├── 24.txt │ │ ├── 25.txt │ │ ├── 26.txt │ │ ├── 27.txt │ │ ├── 28.txt │ │ ├── 29.txt │ │ ├── 30.txt │ │ ├── abs.txt │ │ ├── add.txt │ │ ├── array.dc │ │ ├── boolean.txt │ │ ├── decimal.txt │ │ ├── divide.txt │ │ ├── divmod.txt │ │ ├── else.dc │ │ ├── engineering.txt │ │ ├── loop.dc │ │ ├── misc.txt │ │ ├── modexp.txt │ │ ├── modulus.txt │ │ ├── multiply.txt │ │ ├── places.txt │ │ ├── power.txt │ │ ├── quit.dc │ │ ├── scientific.txt │ │ ├── shift.txt │ │ ├── sqrt.txt │ │ ├── stack_len.txt │ │ ├── stdin.txt │ │ ├── stream.dc │ │ ├── strings.txt │ │ ├── subtract.txt │ │ ├── vars.txt │ │ └── weird.dc ├── history.py ├── history.sh ├── script.sed ├── script.sh ├── scripts.sh ├── stdin.sh └── test.sh └── vs ├── bc.sln ├── bc.vcxproj ├── bc.vcxproj.filters ├── bcl.sln ├── bcl.vcxproj ├── bcl.vcxproj.filters └── tests ├── tests_bc.bat └── tests_dc.bat /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/.clang-format -------------------------------------------------------------------------------- /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/LICENSE.md -------------------------------------------------------------------------------- /MAINTENANCE-TERMS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/MAINTENANCE-TERMS.md -------------------------------------------------------------------------------- /MEMORY_BUGS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/MEMORY_BUGS.md -------------------------------------------------------------------------------- /Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/Makefile.in -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/NEWS.md -------------------------------------------------------------------------------- /NOTICE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/NOTICE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/README.md -------------------------------------------------------------------------------- /VERSION.txt: -------------------------------------------------------------------------------- 1 | 7.1.0 2 | -------------------------------------------------------------------------------- /bcl.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/bcl.pc.in -------------------------------------------------------------------------------- /benchmarks/bc/add.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/benchmarks/bc/add.bc -------------------------------------------------------------------------------- /benchmarks/bc/arrays.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/benchmarks/bc/arrays.bc -------------------------------------------------------------------------------- /benchmarks/bc/bitfuncs.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/benchmarks/bc/bitfuncs.bc -------------------------------------------------------------------------------- /benchmarks/bc/constants.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/benchmarks/bc/constants.bc -------------------------------------------------------------------------------- /benchmarks/bc/divide.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/benchmarks/bc/divide.bc -------------------------------------------------------------------------------- /benchmarks/bc/functions.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/benchmarks/bc/functions.bc -------------------------------------------------------------------------------- /benchmarks/bc/irand_long.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/benchmarks/bc/irand_long.bc -------------------------------------------------------------------------------- /benchmarks/bc/irand_short.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/benchmarks/bc/irand_short.bc -------------------------------------------------------------------------------- /benchmarks/bc/lib.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/benchmarks/bc/lib.bc -------------------------------------------------------------------------------- /benchmarks/bc/multiply.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/benchmarks/bc/multiply.bc -------------------------------------------------------------------------------- /benchmarks/bc/postfix_incdec.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/benchmarks/bc/postfix_incdec.bc -------------------------------------------------------------------------------- /benchmarks/bc/strings.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/benchmarks/bc/strings.bc -------------------------------------------------------------------------------- /benchmarks/bc/subtract.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/benchmarks/bc/subtract.bc -------------------------------------------------------------------------------- /benchmarks/dc/modexp.dc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/benchmarks/dc/modexp.dc -------------------------------------------------------------------------------- /compile_flags.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/compile_flags.txt -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- 1 | configure.sh -------------------------------------------------------------------------------- /configure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/configure.sh -------------------------------------------------------------------------------- /gen/bc_help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/gen/bc_help.txt -------------------------------------------------------------------------------- /gen/dc_help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/gen/dc_help.txt -------------------------------------------------------------------------------- /gen/lib.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/gen/lib.bc -------------------------------------------------------------------------------- /gen/lib2.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/gen/lib2.bc -------------------------------------------------------------------------------- /gen/strgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/gen/strgen.c -------------------------------------------------------------------------------- /gen/strgen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/gen/strgen.sh -------------------------------------------------------------------------------- /include/args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/include/args.h -------------------------------------------------------------------------------- /include/bc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/include/bc.h -------------------------------------------------------------------------------- /include/bcl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/include/bcl.h -------------------------------------------------------------------------------- /include/dc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/include/dc.h -------------------------------------------------------------------------------- /include/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/include/file.h -------------------------------------------------------------------------------- /include/history.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/include/history.h -------------------------------------------------------------------------------- /include/lang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/include/lang.h -------------------------------------------------------------------------------- /include/lex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/include/lex.h -------------------------------------------------------------------------------- /include/library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/include/library.h -------------------------------------------------------------------------------- /include/num.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/include/num.h -------------------------------------------------------------------------------- /include/opt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/include/opt.h -------------------------------------------------------------------------------- /include/ossfuzz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/include/ossfuzz.h -------------------------------------------------------------------------------- /include/parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/include/parse.h -------------------------------------------------------------------------------- /include/program.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/include/program.h -------------------------------------------------------------------------------- /include/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/include/rand.h -------------------------------------------------------------------------------- /include/read.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/include/read.h -------------------------------------------------------------------------------- /include/status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/include/status.h -------------------------------------------------------------------------------- /include/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/include/vector.h -------------------------------------------------------------------------------- /include/vm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/include/vm.h -------------------------------------------------------------------------------- /locales/de_AT.ISO8859-1.msg: -------------------------------------------------------------------------------- 1 | de_DE.ISO8859-1.msg -------------------------------------------------------------------------------- /locales/de_AT.ISO8859-15.msg: -------------------------------------------------------------------------------- 1 | de_DE.ISO8859-1.msg -------------------------------------------------------------------------------- /locales/de_AT.UTF-8.msg: -------------------------------------------------------------------------------- 1 | de_DE.UTF-8.msg -------------------------------------------------------------------------------- /locales/de_AT.utf8.msg: -------------------------------------------------------------------------------- 1 | de_AT.UTF-8.msg -------------------------------------------------------------------------------- /locales/de_CH.ISO8859-1.msg: -------------------------------------------------------------------------------- 1 | de_DE.ISO8859-1.msg -------------------------------------------------------------------------------- /locales/de_CH.ISO8859-15.msg: -------------------------------------------------------------------------------- 1 | de_DE.ISO8859-1.msg -------------------------------------------------------------------------------- /locales/de_CH.UTF-8.msg: -------------------------------------------------------------------------------- 1 | de_DE.UTF-8.msg -------------------------------------------------------------------------------- /locales/de_CH.utf8.msg: -------------------------------------------------------------------------------- 1 | de_CH.UTF-8.msg -------------------------------------------------------------------------------- /locales/de_DE.ISO8859-1.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/locales/de_DE.ISO8859-1.msg -------------------------------------------------------------------------------- /locales/de_DE.ISO8859-15.msg: -------------------------------------------------------------------------------- 1 | de_DE.ISO8859-1.msg -------------------------------------------------------------------------------- /locales/de_DE.UTF-8.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/locales/de_DE.UTF-8.msg -------------------------------------------------------------------------------- /locales/de_DE.utf8.msg: -------------------------------------------------------------------------------- 1 | de_DE.UTF-8.msg -------------------------------------------------------------------------------- /locales/en_AU.ISO8859-1.msg: -------------------------------------------------------------------------------- 1 | en_US.msg -------------------------------------------------------------------------------- /locales/en_AU.ISO8859-15.msg: -------------------------------------------------------------------------------- 1 | en_US.msg -------------------------------------------------------------------------------- /locales/en_AU.US-ASCII.msg: -------------------------------------------------------------------------------- 1 | en_US.msg -------------------------------------------------------------------------------- /locales/en_AU.UTF-8.msg: -------------------------------------------------------------------------------- 1 | en_US.msg -------------------------------------------------------------------------------- /locales/en_AU.utf8.msg: -------------------------------------------------------------------------------- 1 | en_AU.UTF-8.msg -------------------------------------------------------------------------------- /locales/en_CA.ISO8859-1.msg: -------------------------------------------------------------------------------- 1 | en_US.msg -------------------------------------------------------------------------------- /locales/en_CA.ISO8859-15.msg: -------------------------------------------------------------------------------- 1 | en_US.msg -------------------------------------------------------------------------------- /locales/en_CA.US-ASCII.msg: -------------------------------------------------------------------------------- 1 | en_US.msg -------------------------------------------------------------------------------- /locales/en_CA.UTF-8.msg: -------------------------------------------------------------------------------- 1 | en_US.msg -------------------------------------------------------------------------------- /locales/en_CA.utf8.msg: -------------------------------------------------------------------------------- 1 | en_CA.UTF-8.msg -------------------------------------------------------------------------------- /locales/en_GB.ISO8859-1.msg: -------------------------------------------------------------------------------- 1 | en_US.msg -------------------------------------------------------------------------------- /locales/en_GB.ISO8859-15.msg: -------------------------------------------------------------------------------- 1 | en_US.msg -------------------------------------------------------------------------------- /locales/en_GB.US-ASCII.msg: -------------------------------------------------------------------------------- 1 | en_US.msg -------------------------------------------------------------------------------- /locales/en_GB.UTF-8.msg: -------------------------------------------------------------------------------- 1 | en_US.msg -------------------------------------------------------------------------------- /locales/en_GB.utf8.msg: -------------------------------------------------------------------------------- 1 | en_GB.UTF-8.msg -------------------------------------------------------------------------------- /locales/en_IE.ISO8859-1.msg: -------------------------------------------------------------------------------- 1 | en_US.msg -------------------------------------------------------------------------------- /locales/en_IE.ISO8859-15.msg: -------------------------------------------------------------------------------- 1 | en_US.msg -------------------------------------------------------------------------------- /locales/en_IE.US_ASCII.msg: -------------------------------------------------------------------------------- 1 | en_US.msg -------------------------------------------------------------------------------- /locales/en_IE.UTF-8.msg: -------------------------------------------------------------------------------- 1 | en_US.msg -------------------------------------------------------------------------------- /locales/en_IE.utf8.msg: -------------------------------------------------------------------------------- 1 | en_IE.UTF-8.msg -------------------------------------------------------------------------------- /locales/en_NZ.ISO8859-1.msg: -------------------------------------------------------------------------------- 1 | en_US.msg -------------------------------------------------------------------------------- /locales/en_NZ.ISO8859-15.msg: -------------------------------------------------------------------------------- 1 | en_US.msg -------------------------------------------------------------------------------- /locales/en_NZ.US-ASCII.msg: -------------------------------------------------------------------------------- 1 | en_US.msg -------------------------------------------------------------------------------- /locales/en_NZ.UTF-8.msg: -------------------------------------------------------------------------------- 1 | en_US.msg -------------------------------------------------------------------------------- /locales/en_NZ.utf8.msg: -------------------------------------------------------------------------------- 1 | en_NZ.UTF-8.msg -------------------------------------------------------------------------------- /locales/en_US.ISO8859-1.msg: -------------------------------------------------------------------------------- 1 | en_US.msg -------------------------------------------------------------------------------- /locales/en_US.ISO8859-15.msg: -------------------------------------------------------------------------------- 1 | en_US.msg -------------------------------------------------------------------------------- /locales/en_US.US-ASCII.msg: -------------------------------------------------------------------------------- 1 | en_US.msg -------------------------------------------------------------------------------- /locales/en_US.US_ASCII.msg: -------------------------------------------------------------------------------- 1 | en_US.msg -------------------------------------------------------------------------------- /locales/en_US.UTF-8.msg: -------------------------------------------------------------------------------- 1 | en_US.msg -------------------------------------------------------------------------------- /locales/en_US.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/locales/en_US.msg -------------------------------------------------------------------------------- /locales/en_US.utf8.msg: -------------------------------------------------------------------------------- 1 | en_US.UTF-8.msg -------------------------------------------------------------------------------- /locales/es_ES.ISO8859-1.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/locales/es_ES.ISO8859-1.msg -------------------------------------------------------------------------------- /locales/es_ES.ISO8859-15.msg: -------------------------------------------------------------------------------- 1 | es_ES.ISO8859-1.msg -------------------------------------------------------------------------------- /locales/es_ES.UTF-8.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/locales/es_ES.UTF-8.msg -------------------------------------------------------------------------------- /locales/es_ES.utf8.msg: -------------------------------------------------------------------------------- 1 | es_ES.UTF-8.msg -------------------------------------------------------------------------------- /locales/fr_BE.ISO8859-1.msg: -------------------------------------------------------------------------------- 1 | fr_FR.ISO8859-1.msg -------------------------------------------------------------------------------- /locales/fr_BE.ISO8859-15.msg: -------------------------------------------------------------------------------- 1 | fr_FR.ISO8859-1.msg -------------------------------------------------------------------------------- /locales/fr_BE.UTF-8.msg: -------------------------------------------------------------------------------- 1 | fr_FR.UTF-8.msg -------------------------------------------------------------------------------- /locales/fr_BE.utf8.msg: -------------------------------------------------------------------------------- 1 | fr_BE.UTF-8.msg -------------------------------------------------------------------------------- /locales/fr_CA.ISO8859-1.msg: -------------------------------------------------------------------------------- 1 | fr_FR.ISO8859-1.msg -------------------------------------------------------------------------------- /locales/fr_CA.ISO8859-15.msg: -------------------------------------------------------------------------------- 1 | fr_FR.ISO8859-1.msg -------------------------------------------------------------------------------- /locales/fr_CA.UTF-8.msg: -------------------------------------------------------------------------------- 1 | fr_FR.UTF-8.msg -------------------------------------------------------------------------------- /locales/fr_CA.utf8.msg: -------------------------------------------------------------------------------- 1 | fr_CA.UTF-8.msg -------------------------------------------------------------------------------- /locales/fr_CH.ISO8859-1.msg: -------------------------------------------------------------------------------- 1 | fr_FR.ISO8859-1.msg -------------------------------------------------------------------------------- /locales/fr_CH.ISO8859-15.msg: -------------------------------------------------------------------------------- 1 | fr_FR.ISO8859-1.msg -------------------------------------------------------------------------------- /locales/fr_CH.UTF-8.msg: -------------------------------------------------------------------------------- 1 | fr_FR.UTF-8.msg -------------------------------------------------------------------------------- /locales/fr_CH.utf8.msg: -------------------------------------------------------------------------------- 1 | fr_CH.UTF-8.msg -------------------------------------------------------------------------------- /locales/fr_FR.ISO8859-1.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/locales/fr_FR.ISO8859-1.msg -------------------------------------------------------------------------------- /locales/fr_FR.ISO8859-15.msg: -------------------------------------------------------------------------------- 1 | fr_FR.ISO8859-1.msg -------------------------------------------------------------------------------- /locales/fr_FR.UTF-8.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/locales/fr_FR.UTF-8.msg -------------------------------------------------------------------------------- /locales/fr_FR.utf8.msg: -------------------------------------------------------------------------------- 1 | fr_FR.UTF-8.msg -------------------------------------------------------------------------------- /locales/ja_JP.UTF-8.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/locales/ja_JP.UTF-8.msg -------------------------------------------------------------------------------- /locales/ja_JP.eucJP.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/locales/ja_JP.eucJP.msg -------------------------------------------------------------------------------- /locales/ja_JP.utf8.msg: -------------------------------------------------------------------------------- 1 | ja_JP.UTF-8.msg -------------------------------------------------------------------------------- /locales/nl_BE.ISO8859-1.msg: -------------------------------------------------------------------------------- 1 | nl_NL.ISO8859-1.msg -------------------------------------------------------------------------------- /locales/nl_BE.ISO8859-15.msg: -------------------------------------------------------------------------------- 1 | nl_BE.ISO8859-1.msg -------------------------------------------------------------------------------- /locales/nl_NL.ISO8859-1.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/locales/nl_NL.ISO8859-1.msg -------------------------------------------------------------------------------- /locales/nl_NL.ISO8859-15.msg: -------------------------------------------------------------------------------- 1 | nl_NL.ISO8859-1.msg -------------------------------------------------------------------------------- /locales/nl_NL.UTF-8.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/locales/nl_NL.UTF-8.msg -------------------------------------------------------------------------------- /locales/nl_NL.utf8.msg: -------------------------------------------------------------------------------- 1 | nl_NL.UTF-8.msg -------------------------------------------------------------------------------- /locales/pl_PL.ISO8859-2.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/locales/pl_PL.ISO8859-2.msg -------------------------------------------------------------------------------- /locales/pl_PL.UTF-8.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/locales/pl_PL.UTF-8.msg -------------------------------------------------------------------------------- /locales/pl_PL.utf8.msg: -------------------------------------------------------------------------------- 1 | pl_PL.UTF-8.msg -------------------------------------------------------------------------------- /locales/pt_BR.ISO8859-1.msg: -------------------------------------------------------------------------------- 1 | pt_PT.ISO8859-1.msg -------------------------------------------------------------------------------- /locales/pt_BR.ISO8859-15.msg: -------------------------------------------------------------------------------- 1 | pt_PT.ISO8859-1.msg -------------------------------------------------------------------------------- /locales/pt_BR.UTF-8.msg: -------------------------------------------------------------------------------- 1 | pt_PT.UTF-8.msg -------------------------------------------------------------------------------- /locales/pt_BR.utf8.msg: -------------------------------------------------------------------------------- 1 | pt_PT.UTF-8.msg -------------------------------------------------------------------------------- /locales/pt_PT.ISO8859-1.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/locales/pt_PT.ISO8859-1.msg -------------------------------------------------------------------------------- /locales/pt_PT.ISO8859-15.msg: -------------------------------------------------------------------------------- 1 | pt_PT.ISO8859-1.msg -------------------------------------------------------------------------------- /locales/pt_PT.UTF-8.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/locales/pt_PT.UTF-8.msg -------------------------------------------------------------------------------- /locales/pt_PT.utf8.msg: -------------------------------------------------------------------------------- 1 | pt_PT.UTF-8.msg -------------------------------------------------------------------------------- /locales/ru_RU.CP1251.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/locales/ru_RU.CP1251.msg -------------------------------------------------------------------------------- /locales/ru_RU.CP866.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/locales/ru_RU.CP866.msg -------------------------------------------------------------------------------- /locales/ru_RU.ISO8859-5.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/locales/ru_RU.ISO8859-5.msg -------------------------------------------------------------------------------- /locales/ru_RU.KOI8-R.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/locales/ru_RU.KOI8-R.msg -------------------------------------------------------------------------------- /locales/ru_RU.UTF-8.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/locales/ru_RU.UTF-8.msg -------------------------------------------------------------------------------- /locales/ru_RU.utf8.msg: -------------------------------------------------------------------------------- 1 | ru_RU.UTF-8.msg -------------------------------------------------------------------------------- /locales/zh_CN.GB18030.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/locales/zh_CN.GB18030.msg -------------------------------------------------------------------------------- /locales/zh_CN.GB2312.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/locales/zh_CN.GB2312.msg -------------------------------------------------------------------------------- /locales/zh_CN.GBK.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/locales/zh_CN.GBK.msg -------------------------------------------------------------------------------- /locales/zh_CN.UTF-8.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/locales/zh_CN.UTF-8.msg -------------------------------------------------------------------------------- /locales/zh_CN.eucCN.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/locales/zh_CN.eucCN.msg -------------------------------------------------------------------------------- /locales/zh_CN.utf8.msg: -------------------------------------------------------------------------------- 1 | zh_CN.UTF-8.msg -------------------------------------------------------------------------------- /manuals/algorithms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/manuals/algorithms.md -------------------------------------------------------------------------------- /manuals/bc.1.md.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/manuals/bc.1.md.in -------------------------------------------------------------------------------- /manuals/bc/A.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/manuals/bc/A.1 -------------------------------------------------------------------------------- /manuals/bc/A.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/manuals/bc/A.1.md -------------------------------------------------------------------------------- /manuals/bc/E.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/manuals/bc/E.1 -------------------------------------------------------------------------------- /manuals/bc/E.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/manuals/bc/E.1.md -------------------------------------------------------------------------------- /manuals/bc/EH.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/manuals/bc/EH.1 -------------------------------------------------------------------------------- /manuals/bc/EH.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/manuals/bc/EH.1.md -------------------------------------------------------------------------------- /manuals/bc/EHN.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/manuals/bc/EHN.1 -------------------------------------------------------------------------------- /manuals/bc/EHN.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/manuals/bc/EHN.1.md -------------------------------------------------------------------------------- /manuals/bc/EN.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/manuals/bc/EN.1 -------------------------------------------------------------------------------- /manuals/bc/EN.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/manuals/bc/EN.1.md -------------------------------------------------------------------------------- /manuals/bc/H.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/manuals/bc/H.1 -------------------------------------------------------------------------------- /manuals/bc/H.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/manuals/bc/H.1.md -------------------------------------------------------------------------------- /manuals/bc/HN.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/manuals/bc/HN.1 -------------------------------------------------------------------------------- /manuals/bc/HN.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/manuals/bc/HN.1.md -------------------------------------------------------------------------------- /manuals/bc/N.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/manuals/bc/N.1 -------------------------------------------------------------------------------- /manuals/bc/N.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/manuals/bc/N.1.md -------------------------------------------------------------------------------- /manuals/bcl.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/manuals/bcl.3 -------------------------------------------------------------------------------- /manuals/bcl.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/manuals/bcl.3.md -------------------------------------------------------------------------------- /manuals/benchmarks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/manuals/benchmarks.md -------------------------------------------------------------------------------- /manuals/build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/manuals/build.md -------------------------------------------------------------------------------- /manuals/dc.1.md.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/manuals/dc.1.md.in -------------------------------------------------------------------------------- /manuals/dc/A.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/manuals/dc/A.1 -------------------------------------------------------------------------------- /manuals/dc/A.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/manuals/dc/A.1.md -------------------------------------------------------------------------------- /manuals/dc/E.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/manuals/dc/E.1 -------------------------------------------------------------------------------- /manuals/dc/E.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/manuals/dc/E.1.md -------------------------------------------------------------------------------- /manuals/dc/EH.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/manuals/dc/EH.1 -------------------------------------------------------------------------------- /manuals/dc/EH.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/manuals/dc/EH.1.md -------------------------------------------------------------------------------- /manuals/dc/EHN.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/manuals/dc/EHN.1 -------------------------------------------------------------------------------- /manuals/dc/EHN.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/manuals/dc/EHN.1.md -------------------------------------------------------------------------------- /manuals/dc/EN.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/manuals/dc/EN.1 -------------------------------------------------------------------------------- /manuals/dc/EN.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/manuals/dc/EN.1.md -------------------------------------------------------------------------------- /manuals/dc/H.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/manuals/dc/H.1 -------------------------------------------------------------------------------- /manuals/dc/H.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/manuals/dc/H.1.md -------------------------------------------------------------------------------- /manuals/dc/HN.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/manuals/dc/HN.1 -------------------------------------------------------------------------------- /manuals/dc/HN.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/manuals/dc/HN.1.md -------------------------------------------------------------------------------- /manuals/dc/N.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/manuals/dc/N.1 -------------------------------------------------------------------------------- /manuals/dc/N.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/manuals/dc/N.1.md -------------------------------------------------------------------------------- /manuals/development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/manuals/development.md -------------------------------------------------------------------------------- /manuals/header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/manuals/header.txt -------------------------------------------------------------------------------- /manuals/header_bc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/manuals/header_bc.txt -------------------------------------------------------------------------------- /manuals/header_bcl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/manuals/header_bcl.txt -------------------------------------------------------------------------------- /manuals/header_dc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/manuals/header_dc.txt -------------------------------------------------------------------------------- /manuals/release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/manuals/release.md -------------------------------------------------------------------------------- /project/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/project/README.md -------------------------------------------------------------------------------- /project/gitea.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/project/gitea.db -------------------------------------------------------------------------------- /project/github_issues.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/project/github_issues.json -------------------------------------------------------------------------------- /project/github_prs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/project/github_prs.json -------------------------------------------------------------------------------- /project/issue10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/project/issue10.md -------------------------------------------------------------------------------- /scripts/afl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/scripts/afl.py -------------------------------------------------------------------------------- /scripts/alloc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/scripts/alloc.sh -------------------------------------------------------------------------------- /scripts/benchmark.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/scripts/benchmark.sh -------------------------------------------------------------------------------- /scripts/bitfuncgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/scripts/bitfuncgen.c -------------------------------------------------------------------------------- /scripts/exec-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/scripts/exec-install.sh -------------------------------------------------------------------------------- /scripts/format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/scripts/format.sh -------------------------------------------------------------------------------- /scripts/functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/scripts/functions.sh -------------------------------------------------------------------------------- /scripts/fuzz_prep.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/scripts/fuzz_prep.sh -------------------------------------------------------------------------------- /scripts/github.pkg.yao: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/scripts/github.pkg.yao -------------------------------------------------------------------------------- /scripts/github.yao: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/scripts/github.yao -------------------------------------------------------------------------------- /scripts/karatsuba.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/scripts/karatsuba.py -------------------------------------------------------------------------------- /scripts/link.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/scripts/link.sh -------------------------------------------------------------------------------- /scripts/lint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/scripts/lint.sh -------------------------------------------------------------------------------- /scripts/locale_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/scripts/locale_install.sh -------------------------------------------------------------------------------- /scripts/locale_uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/scripts/locale_uninstall.sh -------------------------------------------------------------------------------- /scripts/manpage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/scripts/manpage.sh -------------------------------------------------------------------------------- /scripts/ministat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/scripts/ministat.c -------------------------------------------------------------------------------- /scripts/os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/scripts/os.c -------------------------------------------------------------------------------- /scripts/package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/scripts/package.sh -------------------------------------------------------------------------------- /scripts/radamsa.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/scripts/radamsa.sh -------------------------------------------------------------------------------- /scripts/radamsa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/scripts/radamsa.txt -------------------------------------------------------------------------------- /scripts/randmath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/scripts/randmath.py -------------------------------------------------------------------------------- /scripts/release.pkg.yao: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/scripts/release.pkg.yao -------------------------------------------------------------------------------- /scripts/release.yao: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/scripts/release.yao -------------------------------------------------------------------------------- /scripts/release_flags_rig.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/scripts/release_flags_rig.txt -------------------------------------------------------------------------------- /scripts/release_settings_make.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/scripts/release_settings_make.txt -------------------------------------------------------------------------------- /scripts/release_settings_rig.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/scripts/release_settings_rig.txt -------------------------------------------------------------------------------- /scripts/safe-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/scripts/safe-install.sh -------------------------------------------------------------------------------- /scripts/sqrt_frac_guess.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/scripts/sqrt_frac_guess.bc -------------------------------------------------------------------------------- /scripts/sqrt_int_guess.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/scripts/sqrt_int_guess.bc -------------------------------------------------------------------------------- /scripts/sqrt_random.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/scripts/sqrt_random.bc -------------------------------------------------------------------------------- /scripts/sqrt_random.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/scripts/sqrt_random.sh -------------------------------------------------------------------------------- /scripts/test_settings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/scripts/test_settings.sh -------------------------------------------------------------------------------- /scripts/test_settings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/scripts/test_settings.txt -------------------------------------------------------------------------------- /src/args.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/src/args.c -------------------------------------------------------------------------------- /src/bc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/src/bc.c -------------------------------------------------------------------------------- /src/bc_fuzzer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/src/bc_fuzzer.c -------------------------------------------------------------------------------- /src/bc_lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/src/bc_lex.c -------------------------------------------------------------------------------- /src/bc_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/src/bc_parse.c -------------------------------------------------------------------------------- /src/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/src/data.c -------------------------------------------------------------------------------- /src/dc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/src/dc.c -------------------------------------------------------------------------------- /src/dc_fuzzer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/src/dc_fuzzer.c -------------------------------------------------------------------------------- /src/dc_lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/src/dc_lex.c -------------------------------------------------------------------------------- /src/dc_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/src/dc_parse.c -------------------------------------------------------------------------------- /src/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/src/file.c -------------------------------------------------------------------------------- /src/history.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/src/history.c -------------------------------------------------------------------------------- /src/lang.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/src/lang.c -------------------------------------------------------------------------------- /src/lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/src/lex.c -------------------------------------------------------------------------------- /src/library.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/src/library.c -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/src/main.c -------------------------------------------------------------------------------- /src/num.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/src/num.c -------------------------------------------------------------------------------- /src/opt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/src/opt.c -------------------------------------------------------------------------------- /src/parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/src/parse.c -------------------------------------------------------------------------------- /src/program.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/src/program.c -------------------------------------------------------------------------------- /src/rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/src/rand.c -------------------------------------------------------------------------------- /src/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/src/read.c -------------------------------------------------------------------------------- /src/vector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/src/vector.c -------------------------------------------------------------------------------- /src/vm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/src/vm.c -------------------------------------------------------------------------------- /tests/all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/all.sh -------------------------------------------------------------------------------- /tests/all.txt: -------------------------------------------------------------------------------- 1 | bc 2 | dc 3 | -------------------------------------------------------------------------------- /tests/bc/abs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/abs.txt -------------------------------------------------------------------------------- /tests/bc/abs_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/abs_results.txt -------------------------------------------------------------------------------- /tests/bc/add.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/add.txt -------------------------------------------------------------------------------- /tests/bc/add_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/add_results.txt -------------------------------------------------------------------------------- /tests/bc/all.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/all.txt -------------------------------------------------------------------------------- /tests/bc/arctangent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/arctangent.txt -------------------------------------------------------------------------------- /tests/bc/arctangent_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/arctangent_results.txt -------------------------------------------------------------------------------- /tests/bc/arrays.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/arrays.txt -------------------------------------------------------------------------------- /tests/bc/arrays_results.txt: -------------------------------------------------------------------------------- 1 | 2 2 | 4 3 | 2 4 | -------------------------------------------------------------------------------- /tests/bc/asciify_array.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/asciify_array.txt -------------------------------------------------------------------------------- /tests/bc/asciify_array_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/asciify_array_results.txt -------------------------------------------------------------------------------- /tests/bc/assignments.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/assignments.txt -------------------------------------------------------------------------------- /tests/bc/assignments_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/assignments_results.txt -------------------------------------------------------------------------------- /tests/bc/bitfuncs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/bitfuncs.txt -------------------------------------------------------------------------------- /tests/bc/bitfuncs_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/bitfuncs_results.txt -------------------------------------------------------------------------------- /tests/bc/boolean.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/boolean.txt -------------------------------------------------------------------------------- /tests/bc/boolean_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/boolean_results.txt -------------------------------------------------------------------------------- /tests/bc/comp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/comp.txt -------------------------------------------------------------------------------- /tests/bc/comp_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/comp_results.txt -------------------------------------------------------------------------------- /tests/bc/cosine.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/cosine.txt -------------------------------------------------------------------------------- /tests/bc/cosine_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/cosine_results.txt -------------------------------------------------------------------------------- /tests/bc/decimal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/decimal.txt -------------------------------------------------------------------------------- /tests/bc/decimal_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/decimal_results.txt -------------------------------------------------------------------------------- /tests/bc/divide.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/divide.txt -------------------------------------------------------------------------------- /tests/bc/divide_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/divide_results.txt -------------------------------------------------------------------------------- /tests/bc/divmod.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/divmod.txt -------------------------------------------------------------------------------- /tests/bc/divmod_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/divmod_results.txt -------------------------------------------------------------------------------- /tests/bc/engineering.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/engineering.txt -------------------------------------------------------------------------------- /tests/bc/engineering_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/engineering_results.txt -------------------------------------------------------------------------------- /tests/bc/errors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/errors.txt -------------------------------------------------------------------------------- /tests/bc/errors/01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/errors/01.txt -------------------------------------------------------------------------------- /tests/bc/errors/02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/errors/02.txt -------------------------------------------------------------------------------- /tests/bc/errors/03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/errors/03.txt -------------------------------------------------------------------------------- /tests/bc/errors/04.txt: -------------------------------------------------------------------------------- 1 | "String 2 | -------------------------------------------------------------------------------- /tests/bc/errors/05.txt: -------------------------------------------------------------------------------- 1 | /* Comment 2 | -------------------------------------------------------------------------------- /tests/bc/errors/06.txt: -------------------------------------------------------------------------------- 1 | while (i == 0) { 2 | -------------------------------------------------------------------------------- /tests/bc/errors/07.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/errors/07.txt -------------------------------------------------------------------------------- /tests/bc/errors/08.txt: -------------------------------------------------------------------------------- 1 | define i(x) { 2 | c673 3 | if(267)} 4 | -------------------------------------------------------------------------------- /tests/bc/errors/09.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/errors/09.txt -------------------------------------------------------------------------------- /tests/bc/errors/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/errors/10.txt -------------------------------------------------------------------------------- /tests/bc/errors/11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/errors/11.txt -------------------------------------------------------------------------------- /tests/bc/errors/12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/errors/12.txt -------------------------------------------------------------------------------- /tests/bc/errors/13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/errors/13.txt -------------------------------------------------------------------------------- /tests/bc/errors/14.txt: -------------------------------------------------------------------------------- 1 | a(int32(O143483647)) 2 | -------------------------------------------------------------------------------- /tests/bc/errors/15.txt: -------------------------------------------------------------------------------- 1 | for (i = 0; int32(29834); ++i) { 2 | i 3 | } 4 | -------------------------------------------------------------------------------- /tests/bc/errors/16.txt: -------------------------------------------------------------------------------- 1 | "\ -------------------------------------------------------------------------------- /tests/bc/errors/17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/errors/17.txt -------------------------------------------------------------------------------- /tests/bc/errors/18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/errors/18.txt -------------------------------------------------------------------------------- /tests/bc/errors/19.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/errors/19.txt -------------------------------------------------------------------------------- /tests/bc/errors/20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/errors/20.txt -------------------------------------------------------------------------------- /tests/bc/errors/21.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/errors/21.txt -------------------------------------------------------------------------------- /tests/bc/errors/22.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/errors/22.txt -------------------------------------------------------------------------------- /tests/bc/errors/23.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/errors/23.txt -------------------------------------------------------------------------------- /tests/bc/errors/24.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/errors/24.txt -------------------------------------------------------------------------------- /tests/bc/errors/25.txt: -------------------------------------------------------------------------------- 1 | define void g(x) { 2 | print x 3 | return x 4 | } 5 | -------------------------------------------------------------------------------- /tests/bc/errors/26.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/errors/26.txt -------------------------------------------------------------------------------- /tests/bc/errors/27.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/errors/27.txt -------------------------------------------------------------------------------- /tests/bc/errors/28.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/errors/28.txt -------------------------------------------------------------------------------- /tests/bc/errors/29.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/errors/29.txt -------------------------------------------------------------------------------- /tests/bc/errors/30.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/errors/30.txt -------------------------------------------------------------------------------- /tests/bc/errors/31.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/errors/31.txt -------------------------------------------------------------------------------- /tests/bc/errors/32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/errors/32.txt -------------------------------------------------------------------------------- /tests/bc/errors/33.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/errors/33.txt -------------------------------------------------------------------------------- /tests/bc/errors/34.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/errors/34.txt -------------------------------------------------------------------------------- /tests/bc/errors/35.txt: -------------------------------------------------------------------------------- 1 | e(q[asciify(q[])]) -------------------------------------------------------------------------------- /tests/bc/errors/36.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/errors/36.txt -------------------------------------------------------------------------------- /tests/bc/errors/37.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/errors/37.txt -------------------------------------------------------------------------------- /tests/bc/errors/38.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/errors/38.txt -------------------------------------------------------------------------------- /tests/bc/errors/39.txt: -------------------------------------------------------------------------------- 1 | define a(*t[], t[]) {} 2 | -------------------------------------------------------------------------------- /tests/bc/exponent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/exponent.txt -------------------------------------------------------------------------------- /tests/bc/exponent_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/exponent_results.txt -------------------------------------------------------------------------------- /tests/bc/fib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/fib.txt -------------------------------------------------------------------------------- /tests/bc/fib_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/fib_results.txt -------------------------------------------------------------------------------- /tests/bc/functions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/functions.txt -------------------------------------------------------------------------------- /tests/bc/functions_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/functions_results.txt -------------------------------------------------------------------------------- /tests/bc/globals.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/globals.txt -------------------------------------------------------------------------------- /tests/bc/globals_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/globals_results.txt -------------------------------------------------------------------------------- /tests/bc/is_number.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/is_number.txt -------------------------------------------------------------------------------- /tests/bc/is_number_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/is_number_results.txt -------------------------------------------------------------------------------- /tests/bc/is_string.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/is_string.txt -------------------------------------------------------------------------------- /tests/bc/is_string_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/is_string_results.txt -------------------------------------------------------------------------------- /tests/bc/leadingzero.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/leadingzero.txt -------------------------------------------------------------------------------- /tests/bc/leadingzero_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/leadingzero_results.txt -------------------------------------------------------------------------------- /tests/bc/length.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/length.txt -------------------------------------------------------------------------------- /tests/bc/length_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/length_results.txt -------------------------------------------------------------------------------- /tests/bc/letters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/letters.txt -------------------------------------------------------------------------------- /tests/bc/letters_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/letters_results.txt -------------------------------------------------------------------------------- /tests/bc/lib2_a2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/lib2_a2.txt -------------------------------------------------------------------------------- /tests/bc/lib2_a2_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/lib2_a2_results.txt -------------------------------------------------------------------------------- /tests/bc/lib2_bytes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/lib2_bytes.txt -------------------------------------------------------------------------------- /tests/bc/lib2_bytes_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/lib2_bytes_results.txt -------------------------------------------------------------------------------- /tests/bc/lib2_ceil.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/lib2_ceil.txt -------------------------------------------------------------------------------- /tests/bc/lib2_ceil_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/lib2_ceil_results.txt -------------------------------------------------------------------------------- /tests/bc/lib2_d2r.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/lib2_d2r.txt -------------------------------------------------------------------------------- /tests/bc/lib2_d2r_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/lib2_d2r_results.txt -------------------------------------------------------------------------------- /tests/bc/lib2_fac.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/lib2_fac.txt -------------------------------------------------------------------------------- /tests/bc/lib2_fac_results.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 1 3 | 2 4 | 6 5 | 24 6 | 120 7 | -------------------------------------------------------------------------------- /tests/bc/lib2_gcd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/lib2_gcd.txt -------------------------------------------------------------------------------- /tests/bc/lib2_gcd_results.txt: -------------------------------------------------------------------------------- 1 | 5 2 | 1 3 | 1 4 | 4 5 | 8 6 | 20480 7 | 6105 8 | -------------------------------------------------------------------------------- /tests/bc/lib2_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/lib2_log.txt -------------------------------------------------------------------------------- /tests/bc/lib2_log_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/lib2_log_results.txt -------------------------------------------------------------------------------- /tests/bc/lib2_p.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/lib2_p.txt -------------------------------------------------------------------------------- /tests/bc/lib2_p_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/lib2_p_results.txt -------------------------------------------------------------------------------- /tests/bc/lib2_perm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/lib2_perm.txt -------------------------------------------------------------------------------- /tests/bc/lib2_perm_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/lib2_perm_results.txt -------------------------------------------------------------------------------- /tests/bc/lib2_pi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/lib2_pi.txt -------------------------------------------------------------------------------- /tests/bc/lib2_pi_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/lib2_pi_results.txt -------------------------------------------------------------------------------- /tests/bc/lib2_r.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/lib2_r.txt -------------------------------------------------------------------------------- /tests/bc/lib2_r2d.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/lib2_r2d.txt -------------------------------------------------------------------------------- /tests/bc/lib2_r2d_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/lib2_r2d_results.txt -------------------------------------------------------------------------------- /tests/bc/lib2_r_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/lib2_r_results.txt -------------------------------------------------------------------------------- /tests/bc/lib2_rand.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/lib2_rand.txt -------------------------------------------------------------------------------- /tests/bc/lib2_rand_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/lib2_rand_results.txt -------------------------------------------------------------------------------- /tests/bc/lib2_root.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/lib2_root.txt -------------------------------------------------------------------------------- /tests/bc/lib2_root_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/lib2_root_results.txt -------------------------------------------------------------------------------- /tests/bc/lib2_tan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/lib2_tan.txt -------------------------------------------------------------------------------- /tests/bc/lib2_tan_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/lib2_tan_results.txt -------------------------------------------------------------------------------- /tests/bc/lib2_uint.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/lib2_uint.txt -------------------------------------------------------------------------------- /tests/bc/lib2_uint_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/lib2_uint_results.txt -------------------------------------------------------------------------------- /tests/bc/line_by_line1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/line_by_line1.txt -------------------------------------------------------------------------------- /tests/bc/line_by_line1_results.txt: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /tests/bc/line_by_line2_results.txt: -------------------------------------------------------------------------------- 1 | 2 2 | a(10) 3 | 0 4 | -------------------------------------------------------------------------------- /tests/bc/line_loop_quit1.txt: -------------------------------------------------------------------------------- 1 | 3 2 | for (i = 0; i < 3; ++i) i; quit 3 | -------------------------------------------------------------------------------- /tests/bc/line_loop_quit1_results.txt: -------------------------------------------------------------------------------- 1 | 3 2 | 0 3 | 1 4 | 2 5 | -------------------------------------------------------------------------------- /tests/bc/line_loop_quit2.txt: -------------------------------------------------------------------------------- 1 | 3 2 | for (i = 0; i < 3; ++i) i; \ 3 | quit 4 | -------------------------------------------------------------------------------- /tests/bc/line_loop_quit2_results.txt: -------------------------------------------------------------------------------- 1 | 3 2 | 0 3 | 1 4 | 2 5 | -------------------------------------------------------------------------------- /tests/bc/log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/log.txt -------------------------------------------------------------------------------- /tests/bc/log_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/log_results.txt -------------------------------------------------------------------------------- /tests/bc/misc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/misc.txt -------------------------------------------------------------------------------- /tests/bc/misc1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/misc1.txt -------------------------------------------------------------------------------- /tests/bc/misc1_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/misc1_results.txt -------------------------------------------------------------------------------- /tests/bc/misc2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/misc2.txt -------------------------------------------------------------------------------- /tests/bc/misc2_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/misc2_results.txt -------------------------------------------------------------------------------- /tests/bc/misc3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/misc3.txt -------------------------------------------------------------------------------- /tests/bc/misc3_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/misc3_results.txt -------------------------------------------------------------------------------- /tests/bc/misc4.txt: -------------------------------------------------------------------------------- 1 | if ( 1 != 1 ) 7 2 | maxibase() + 1 3 | -------------------------------------------------------------------------------- /tests/bc/misc4_results.txt: -------------------------------------------------------------------------------- 1 | 37 2 | -------------------------------------------------------------------------------- /tests/bc/misc5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/misc5.txt -------------------------------------------------------------------------------- /tests/bc/misc5_results.txt: -------------------------------------------------------------------------------- 1 | 5 2 | 6 3 | n 4 | true 5 | -------------------------------------------------------------------------------- /tests/bc/misc6.txt: -------------------------------------------------------------------------------- 1 | stdin1.txt -------------------------------------------------------------------------------- /tests/bc/misc6_results.txt: -------------------------------------------------------------------------------- 1 | stdin1_results.txt -------------------------------------------------------------------------------- /tests/bc/misc7.txt: -------------------------------------------------------------------------------- 1 | stdin2.txt -------------------------------------------------------------------------------- /tests/bc/misc7_results.txt: -------------------------------------------------------------------------------- 1 | stdin2_results.txt -------------------------------------------------------------------------------- /tests/bc/misc8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/misc8.txt -------------------------------------------------------------------------------- /tests/bc/misc8_results.txt: -------------------------------------------------------------------------------- 1 | 24 2 | 5 3 | 6 4 | -------------------------------------------------------------------------------- /tests/bc/misc_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/misc_results.txt -------------------------------------------------------------------------------- /tests/bc/modexp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/modexp.txt -------------------------------------------------------------------------------- /tests/bc/modexp_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/modexp_results.txt -------------------------------------------------------------------------------- /tests/bc/modulus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/modulus.txt -------------------------------------------------------------------------------- /tests/bc/modulus_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/modulus_results.txt -------------------------------------------------------------------------------- /tests/bc/multiply.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/multiply.txt -------------------------------------------------------------------------------- /tests/bc/multiply_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/multiply_results.txt -------------------------------------------------------------------------------- /tests/bc/pi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/pi.txt -------------------------------------------------------------------------------- /tests/bc/pi_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/pi_results.txt -------------------------------------------------------------------------------- /tests/bc/places.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/places.txt -------------------------------------------------------------------------------- /tests/bc/places_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/places_results.txt -------------------------------------------------------------------------------- /tests/bc/posix_errors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/posix_errors.txt -------------------------------------------------------------------------------- /tests/bc/power.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/power.txt -------------------------------------------------------------------------------- /tests/bc/power_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/power_results.txt -------------------------------------------------------------------------------- /tests/bc/print2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/print2.txt -------------------------------------------------------------------------------- /tests/bc/print2_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/print2_results.txt -------------------------------------------------------------------------------- /tests/bc/rand.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/rand.txt -------------------------------------------------------------------------------- /tests/bc/rand_limits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/rand_limits.txt -------------------------------------------------------------------------------- /tests/bc/rand_limits_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/rand_limits_results.txt -------------------------------------------------------------------------------- /tests/bc/rand_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/rand_results.txt -------------------------------------------------------------------------------- /tests/bc/read.txt: -------------------------------------------------------------------------------- 1 | 1 + 1 2 | -------------------------------------------------------------------------------- /tests/bc/read_errors.txt: -------------------------------------------------------------------------------- 1 | 5+5; 2 | read() 3 | -------------------------------------------------------------------------------- /tests/bc/read_results.txt: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /tests/bc/recursive_arrays.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/recursive_arrays.txt -------------------------------------------------------------------------------- /tests/bc/recursive_arrays_results.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/bc/scale.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scale.txt -------------------------------------------------------------------------------- /tests/bc/scale_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scale_results.txt -------------------------------------------------------------------------------- /tests/bc/scientific.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scientific.txt -------------------------------------------------------------------------------- /tests/bc/scientific_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scientific_results.txt -------------------------------------------------------------------------------- /tests/bc/scripts/add_00100.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_00100.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_00200.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_00200.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_00300.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_00300.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_00400.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_00400.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_00500.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_00500.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_00600.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_00600.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_00700.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_00700.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_00800.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_00800.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_00900.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_00900.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_01000.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_01000.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_01100.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_01100.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_01200.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_01200.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_01300.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_01300.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_01400.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_01400.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_01500.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_01500.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_01600.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_01600.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_01700.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_01700.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_01800.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_01800.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_01900.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_01900.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_02000.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_02000.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_02100.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_02100.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_02200.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_02200.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_02300.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_02300.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_02400.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_02400.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_02500.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_02500.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_02600.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_02600.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_02700.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_02700.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_02800.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_02800.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_02900.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_02900.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_03000.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_03000.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_03100.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_03100.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_03200.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_03200.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_03300.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_03300.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_03400.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_03400.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_03500.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_03500.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_03600.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_03600.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_03700.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_03700.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_03800.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_03800.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_03900.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_03900.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_04000.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_04000.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_04100.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_04100.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_04200.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_04200.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_04300.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_04300.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_04400.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_04400.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_04500.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_04500.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_04600.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_04600.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_04700.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_04700.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_04800.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_04800.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_04900.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_04900.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_05000.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_05000.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_05100.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_05100.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_05200.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_05200.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_05300.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_05300.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_05400.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_05400.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_05500.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_05500.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_05600.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_05600.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_05700.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_05700.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_05800.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_05800.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_05900.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_05900.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_06000.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_06000.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_06100.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_06100.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_06200.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_06200.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_06300.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_06300.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_06400.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_06400.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_06500.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_06500.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_06600.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_06600.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_06700.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_06700.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_06800.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_06800.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_06900.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_06900.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_07000.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_07000.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_07100.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_07100.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_07200.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_07200.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_07300.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_07300.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_07400.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_07400.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_07500.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_07500.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_07600.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_07600.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_07700.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_07700.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_07800.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_07800.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_07900.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_07900.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_08000.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_08000.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_08100.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_08100.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_08200.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_08200.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_08300.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_08300.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_08400.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_08400.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_08500.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_08500.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_08600.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_08600.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_08700.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_08700.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_08800.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_08800.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_08900.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_08900.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_09000.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_09000.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_09100.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_09100.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_09200.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_09200.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_09300.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_09300.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_09400.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_09400.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_09500.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_09500.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_09600.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_09600.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_09700.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_09700.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_09800.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_09800.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_09900.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_09900.bc -------------------------------------------------------------------------------- /tests/bc/scripts/add_10000.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/add_10000.bc -------------------------------------------------------------------------------- /tests/bc/scripts/afl1.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/afl1.bc -------------------------------------------------------------------------------- /tests/bc/scripts/afl1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/afl1.txt -------------------------------------------------------------------------------- /tests/bc/scripts/all.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/all.txt -------------------------------------------------------------------------------- /tests/bc/scripts/array.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/array.bc -------------------------------------------------------------------------------- /tests/bc/scripts/array.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/array.txt -------------------------------------------------------------------------------- /tests/bc/scripts/array2.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/array2.bc -------------------------------------------------------------------------------- /tests/bc/scripts/array2.txt: -------------------------------------------------------------------------------- 1 | 12 2 | 14 3 | -------------------------------------------------------------------------------- /tests/bc/scripts/atan.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/atan.bc -------------------------------------------------------------------------------- /tests/bc/scripts/atan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/atan.txt -------------------------------------------------------------------------------- /tests/bc/scripts/bessel.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/bessel.bc -------------------------------------------------------------------------------- /tests/bc/scripts/cbrt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/cbrt.txt -------------------------------------------------------------------------------- /tests/bc/scripts/divide_00100.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/divide_00100.bc -------------------------------------------------------------------------------- /tests/bc/scripts/divide_00200.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/divide_00200.bc -------------------------------------------------------------------------------- /tests/bc/scripts/divide_00300.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/divide_00300.bc -------------------------------------------------------------------------------- /tests/bc/scripts/divide_00400.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/divide_00400.bc -------------------------------------------------------------------------------- /tests/bc/scripts/divide_00500.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/divide_00500.bc -------------------------------------------------------------------------------- /tests/bc/scripts/divide_00600.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/divide_00600.bc -------------------------------------------------------------------------------- /tests/bc/scripts/divide_00700.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/divide_00700.bc -------------------------------------------------------------------------------- /tests/bc/scripts/divide_00800.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/divide_00800.bc -------------------------------------------------------------------------------- /tests/bc/scripts/divide_00900.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/divide_00900.bc -------------------------------------------------------------------------------- /tests/bc/scripts/divide_01000.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/divide_01000.bc -------------------------------------------------------------------------------- /tests/bc/scripts/divide_01100.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/divide_01100.bc -------------------------------------------------------------------------------- /tests/bc/scripts/divide_01200.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/divide_01200.bc -------------------------------------------------------------------------------- /tests/bc/scripts/divide_01300.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/divide_01300.bc -------------------------------------------------------------------------------- /tests/bc/scripts/divide_01400.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/divide_01400.bc -------------------------------------------------------------------------------- /tests/bc/scripts/divide_01500.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/divide_01500.bc -------------------------------------------------------------------------------- /tests/bc/scripts/divide_01600.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/divide_01600.bc -------------------------------------------------------------------------------- /tests/bc/scripts/divide_01700.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/divide_01700.bc -------------------------------------------------------------------------------- /tests/bc/scripts/divide_01800.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/divide_01800.bc -------------------------------------------------------------------------------- /tests/bc/scripts/divide_01900.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/divide_01900.bc -------------------------------------------------------------------------------- /tests/bc/scripts/divide_02000.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/divide_02000.bc -------------------------------------------------------------------------------- /tests/bc/scripts/divide_02100.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/divide_02100.bc -------------------------------------------------------------------------------- /tests/bc/scripts/divide_02200.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/divide_02200.bc -------------------------------------------------------------------------------- /tests/bc/scripts/divide_02300.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/divide_02300.bc -------------------------------------------------------------------------------- /tests/bc/scripts/divide_02400.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/divide_02400.bc -------------------------------------------------------------------------------- /tests/bc/scripts/divide_02500.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/divide_02500.bc -------------------------------------------------------------------------------- /tests/bc/scripts/divide_02600.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/divide_02600.bc -------------------------------------------------------------------------------- /tests/bc/scripts/divide_02700.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/divide_02700.bc -------------------------------------------------------------------------------- /tests/bc/scripts/divide_02800.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/divide_02800.bc -------------------------------------------------------------------------------- /tests/bc/scripts/divide_02900.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/divide_02900.bc -------------------------------------------------------------------------------- /tests/bc/scripts/divide_03000.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/divide_03000.bc -------------------------------------------------------------------------------- /tests/bc/scripts/divide_03100.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/divide_03100.bc -------------------------------------------------------------------------------- /tests/bc/scripts/divide_03200.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/divide_03200.bc -------------------------------------------------------------------------------- /tests/bc/scripts/divide_03300.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/divide_03300.bc -------------------------------------------------------------------------------- /tests/bc/scripts/divide_03400.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/divide_03400.bc -------------------------------------------------------------------------------- /tests/bc/scripts/divide_03500.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/divide_03500.bc -------------------------------------------------------------------------------- /tests/bc/scripts/divide_03600.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/divide_03600.bc -------------------------------------------------------------------------------- /tests/bc/scripts/divide_03700.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/divide_03700.bc -------------------------------------------------------------------------------- /tests/bc/scripts/divide_03800.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/divide_03800.bc -------------------------------------------------------------------------------- /tests/bc/scripts/divide_03900.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/divide_03900.bc -------------------------------------------------------------------------------- /tests/bc/scripts/divide_04000.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/divide_04000.bc -------------------------------------------------------------------------------- /tests/bc/scripts/divide_04100.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/divide_04100.bc -------------------------------------------------------------------------------- /tests/bc/scripts/divide_04200.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/divide_04200.bc -------------------------------------------------------------------------------- /tests/bc/scripts/divide_04300.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/divide_04300.bc -------------------------------------------------------------------------------- /tests/bc/scripts/divide_04400.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/divide_04400.bc -------------------------------------------------------------------------------- /tests/bc/scripts/divide_04500.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/divide_04500.bc -------------------------------------------------------------------------------- /tests/bc/scripts/divide_04600.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/divide_04600.bc -------------------------------------------------------------------------------- /tests/bc/scripts/divide_04700.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/divide_04700.bc -------------------------------------------------------------------------------- /tests/bc/scripts/divide_04800.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/divide_04800.bc -------------------------------------------------------------------------------- /tests/bc/scripts/divide_04900.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/divide_04900.bc -------------------------------------------------------------------------------- /tests/bc/scripts/divide_05000.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/divide_05000.bc -------------------------------------------------------------------------------- /tests/bc/scripts/divide_05100.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/divide_05100.bc -------------------------------------------------------------------------------- /tests/bc/scripts/divide_05200.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/divide_05200.bc -------------------------------------------------------------------------------- /tests/bc/scripts/divide_05300.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/divide_05300.bc -------------------------------------------------------------------------------- /tests/bc/scripts/divide_05400.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/divide_05400.bc -------------------------------------------------------------------------------- /tests/bc/scripts/functions.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/functions.bc -------------------------------------------------------------------------------- /tests/bc/scripts/functions.txt: -------------------------------------------------------------------------------- 1 | 1.64872127070012814684 2 | .5 3 | -------------------------------------------------------------------------------- /tests/bc/scripts/globals.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/globals.bc -------------------------------------------------------------------------------- /tests/bc/scripts/globals.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/globals.txt -------------------------------------------------------------------------------- /tests/bc/scripts/i2rand.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/i2rand.bc -------------------------------------------------------------------------------- /tests/bc/scripts/i2rand.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/i2rand.txt -------------------------------------------------------------------------------- /tests/bc/scripts/ifs.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/ifs.bc -------------------------------------------------------------------------------- /tests/bc/scripts/ifs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/ifs.txt -------------------------------------------------------------------------------- /tests/bc/scripts/ifs2.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/ifs2.bc -------------------------------------------------------------------------------- /tests/bc/scripts/ifs2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/ifs2.txt -------------------------------------------------------------------------------- /tests/bc/scripts/len.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/len.bc -------------------------------------------------------------------------------- /tests/bc/scripts/len.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 1 3 | 2 4 | -------------------------------------------------------------------------------- /tests/bc/scripts/parse_02.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/parse_02.bc -------------------------------------------------------------------------------- /tests/bc/scripts/parse_03.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/parse_03.bc -------------------------------------------------------------------------------- /tests/bc/scripts/parse_04.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/parse_04.bc -------------------------------------------------------------------------------- /tests/bc/scripts/parse_05.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/parse_05.bc -------------------------------------------------------------------------------- /tests/bc/scripts/parse_06.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/parse_06.bc -------------------------------------------------------------------------------- /tests/bc/scripts/parse_07.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/parse_07.bc -------------------------------------------------------------------------------- /tests/bc/scripts/parse_08.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/parse_08.bc -------------------------------------------------------------------------------- /tests/bc/scripts/parse_09.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/parse_09.bc -------------------------------------------------------------------------------- /tests/bc/scripts/parse_11.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/parse_11.bc -------------------------------------------------------------------------------- /tests/bc/scripts/parse_12.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/parse_12.bc -------------------------------------------------------------------------------- /tests/bc/scripts/parse_13.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/parse_13.bc -------------------------------------------------------------------------------- /tests/bc/scripts/parse_14.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/parse_14.bc -------------------------------------------------------------------------------- /tests/bc/scripts/parse_15.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/parse_15.bc -------------------------------------------------------------------------------- /tests/bc/scripts/parse_16.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/parse_16.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print2.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print2.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print2.txt -------------------------------------------------------------------------------- /tests/bc/scripts/print_002.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_002.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_003.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_003.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_004.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_004.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_005.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_005.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_006.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_006.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_007.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_007.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_008.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_008.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_009.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_009.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_011.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_011.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_012.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_012.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_013.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_013.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_014.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_014.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_015.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_015.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_016.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_016.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_017.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_017.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_018.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_018.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_019.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_019.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_020.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_020.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_021.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_021.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_022.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_022.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_023.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_023.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_024.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_024.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_025.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_025.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_026.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_026.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_027.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_027.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_028.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_028.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_029.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_029.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_030.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_030.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_031.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_031.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_032.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_032.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_033.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_033.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_034.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_034.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_035.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_035.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_036.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_036.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_037.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_037.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_038.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_038.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_039.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_039.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_040.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_040.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_041.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_041.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_042.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_042.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_043.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_043.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_044.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_044.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_045.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_045.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_046.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_046.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_047.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_047.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_048.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_048.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_049.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_049.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_050.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_050.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_051.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_051.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_052.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_052.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_053.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_053.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_054.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_054.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_055.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_055.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_056.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_056.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_057.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_057.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_058.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_058.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_059.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_059.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_060.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_060.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_061.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_061.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_062.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_062.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_063.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_063.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_064.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_064.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_065.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_065.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_066.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_066.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_067.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_067.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_068.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_068.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_069.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_069.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_070.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_070.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_071.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_071.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_072.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_072.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_073.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_073.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_074.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_074.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_075.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_075.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_076.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_076.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_077.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_077.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_078.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_078.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_079.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_079.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_080.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_080.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_081.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_081.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_082.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_082.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_083.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_083.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_084.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_084.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_085.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_085.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_086.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_086.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_087.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_087.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_088.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_088.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_089.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_089.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_090.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_090.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_091.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_091.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_092.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_092.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_093.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_093.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_094.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_094.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_095.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_095.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_096.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_096.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_097.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_097.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_098.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_098.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_099.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_099.bc -------------------------------------------------------------------------------- /tests/bc/scripts/print_100.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/print_100.bc -------------------------------------------------------------------------------- /tests/bc/scripts/rand.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/rand.bc -------------------------------------------------------------------------------- /tests/bc/scripts/rand.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/rand.txt -------------------------------------------------------------------------------- /tests/bc/scripts/references.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/references.bc -------------------------------------------------------------------------------- /tests/bc/scripts/references.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/references.txt -------------------------------------------------------------------------------- /tests/bc/scripts/root.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/root.bc -------------------------------------------------------------------------------- /tests/bc/scripts/root.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/root.txt -------------------------------------------------------------------------------- /tests/bc/scripts/screen.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/screen.bc -------------------------------------------------------------------------------- /tests/bc/scripts/screen.txt: -------------------------------------------------------------------------------- 1 | 480 2 | -------------------------------------------------------------------------------- /tests/bc/scripts/strings2.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/scripts/strings2.bc -------------------------------------------------------------------------------- /tests/bc/shift.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/shift.txt -------------------------------------------------------------------------------- /tests/bc/shift_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/shift_results.txt -------------------------------------------------------------------------------- /tests/bc/sine.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/sine.txt -------------------------------------------------------------------------------- /tests/bc/sine_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/sine_results.txt -------------------------------------------------------------------------------- /tests/bc/sqrt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/sqrt.txt -------------------------------------------------------------------------------- /tests/bc/sqrt_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/sqrt_results.txt -------------------------------------------------------------------------------- /tests/bc/stdin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/stdin.txt -------------------------------------------------------------------------------- /tests/bc/stdin1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/stdin1.txt -------------------------------------------------------------------------------- /tests/bc/stdin1_results.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/bc/stdin2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/stdin2.txt -------------------------------------------------------------------------------- /tests/bc/stdin2_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/stdin2_results.txt -------------------------------------------------------------------------------- /tests/bc/stdin_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/stdin_results.txt -------------------------------------------------------------------------------- /tests/bc/strings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/strings.txt -------------------------------------------------------------------------------- /tests/bc/strings_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/strings_results.txt -------------------------------------------------------------------------------- /tests/bc/subtract.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/subtract.txt -------------------------------------------------------------------------------- /tests/bc/subtract_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/subtract_results.txt -------------------------------------------------------------------------------- /tests/bc/timeconst.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/timeconst.sh -------------------------------------------------------------------------------- /tests/bc/trunc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/trunc.txt -------------------------------------------------------------------------------- /tests/bc/trunc_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/trunc_results.txt -------------------------------------------------------------------------------- /tests/bc/vars.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/vars.txt -------------------------------------------------------------------------------- /tests/bc/vars_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/vars_results.txt -------------------------------------------------------------------------------- /tests/bc/void.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/void.txt -------------------------------------------------------------------------------- /tests/bc/void_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bc/void_results.txt -------------------------------------------------------------------------------- /tests/bcl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/bcl.c -------------------------------------------------------------------------------- /tests/dc/abs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/abs.txt -------------------------------------------------------------------------------- /tests/dc/abs_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/abs_results.txt -------------------------------------------------------------------------------- /tests/dc/add.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/add.txt -------------------------------------------------------------------------------- /tests/dc/add_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/add_results.txt -------------------------------------------------------------------------------- /tests/dc/all.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/all.txt -------------------------------------------------------------------------------- /tests/dc/boolean.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/boolean.txt -------------------------------------------------------------------------------- /tests/dc/boolean_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/boolean_results.txt -------------------------------------------------------------------------------- /tests/dc/decimal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/decimal.txt -------------------------------------------------------------------------------- /tests/dc/decimal_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/decimal_results.txt -------------------------------------------------------------------------------- /tests/dc/divide.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/divide.txt -------------------------------------------------------------------------------- /tests/dc/divide_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/divide_results.txt -------------------------------------------------------------------------------- /tests/dc/divmod.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/divmod.txt -------------------------------------------------------------------------------- /tests/dc/divmod_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/divmod_results.txt -------------------------------------------------------------------------------- /tests/dc/engineering.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/engineering.txt -------------------------------------------------------------------------------- /tests/dc/errors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/errors.txt -------------------------------------------------------------------------------- /tests/dc/errors/01.txt: -------------------------------------------------------------------------------- 1 | [[aotsnheau 2 | 't,.h] 3 | -------------------------------------------------------------------------------- /tests/dc/errors/02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/errors/02.txt -------------------------------------------------------------------------------- /tests/dc/errors/03.txt: -------------------------------------------------------------------------------- 1 | 0 lip1-si0l0+234sx_9lq+pR 34.x 2 | [li170LLdp1+s+sX10lML]SL98silLx 2 | i 3 | -------------------------------------------------------------------------------- /tests/dc/errors/09.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/errors/09.txt -------------------------------------------------------------------------------- /tests/dc/errors/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/errors/10.txt -------------------------------------------------------------------------------- /tests/dc/errors/11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/errors/11.txt -------------------------------------------------------------------------------- /tests/dc/errors/12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/errors/12.txt -------------------------------------------------------------------------------- /tests/dc/errors/13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/errors/13.txt -------------------------------------------------------------------------------- /tests/dc/errors/14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/errors/14.txt -------------------------------------------------------------------------------- /tests/dc/errors/15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/errors/15.txt -------------------------------------------------------------------------------- /tests/dc/errors/16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/errors/16.txt -------------------------------------------------------------------------------- /tests/dc/errors/17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/errors/17.txt -------------------------------------------------------------------------------- /tests/dc/errors/18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/errors/18.txt -------------------------------------------------------------------------------- /tests/dc/errors/19.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/errors/19.txt -------------------------------------------------------------------------------- /tests/dc/errors/20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/errors/20.txt -------------------------------------------------------------------------------- /tests/dc/errors/21.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/errors/21.txt -------------------------------------------------------------------------------- /tests/dc/errors/22.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/errors/22.txt -------------------------------------------------------------------------------- /tests/dc/errors/23.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/errors/23.txt -------------------------------------------------------------------------------- /tests/dc/errors/24.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/errors/24.txt -------------------------------------------------------------------------------- /tests/dc/errors/25.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/errors/25.txt -------------------------------------------------------------------------------- /tests/dc/errors/26.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/errors/26.txt -------------------------------------------------------------------------------- /tests/dc/errors/27.txt: -------------------------------------------------------------------------------- 1 | " 1(pR,129bp\ 2 | 3 | -------------------------------------------------------------------------------- /tests/dc/errors/28.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/errors/28.txt -------------------------------------------------------------------------------- /tests/dc/errors/29.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/errors/29.txt -------------------------------------------------------------------------------- /tests/dc/errors/30.txt: -------------------------------------------------------------------------------- 1 | 0;0[]0:b;bs0l0x;0 2 | -------------------------------------------------------------------------------- /tests/dc/errors/31.txt: -------------------------------------------------------------------------------- 1 | 0;0[]0:b;bS0l0x;0 2 | -------------------------------------------------------------------------------- /tests/dc/errors/32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/errors/32.txt -------------------------------------------------------------------------------- /tests/dc/errors/33.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/errors/33.txt -------------------------------------------------------------------------------- /tests/dc/exec_stack_len.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/exec_stack_len.txt -------------------------------------------------------------------------------- /tests/dc/exec_stack_len_results.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 3 4 | 4 5 | 4 6 | 3 7 | 5 8 | 1 9 | -------------------------------------------------------------------------------- /tests/dc/is_number.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/is_number.txt -------------------------------------------------------------------------------- /tests/dc/is_number_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/is_number_results.txt -------------------------------------------------------------------------------- /tests/dc/is_string.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/is_string.txt -------------------------------------------------------------------------------- /tests/dc/is_string_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/is_string_results.txt -------------------------------------------------------------------------------- /tests/dc/length.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/length.txt -------------------------------------------------------------------------------- /tests/dc/length_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/length_results.txt -------------------------------------------------------------------------------- /tests/dc/misc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/misc.txt -------------------------------------------------------------------------------- /tests/dc/misc1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/misc1.txt -------------------------------------------------------------------------------- /tests/dc/misc1_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/misc1_results.txt -------------------------------------------------------------------------------- /tests/dc/misc_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/misc_results.txt -------------------------------------------------------------------------------- /tests/dc/modexp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/modexp.txt -------------------------------------------------------------------------------- /tests/dc/modexp_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/modexp_results.txt -------------------------------------------------------------------------------- /tests/dc/modulus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/modulus.txt -------------------------------------------------------------------------------- /tests/dc/modulus_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/modulus_results.txt -------------------------------------------------------------------------------- /tests/dc/multiply.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/multiply.txt -------------------------------------------------------------------------------- /tests/dc/multiply_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/multiply_results.txt -------------------------------------------------------------------------------- /tests/dc/negate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/negate.txt -------------------------------------------------------------------------------- /tests/dc/negate_results.txt: -------------------------------------------------------------------------------- 1 | -1 2 | -2 3 | -129837.218092 4 | -------------------------------------------------------------------------------- /tests/dc/places.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/places.txt -------------------------------------------------------------------------------- /tests/dc/places_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/places_results.txt -------------------------------------------------------------------------------- /tests/dc/power.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/power.txt -------------------------------------------------------------------------------- /tests/dc/power_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/power_results.txt -------------------------------------------------------------------------------- /tests/dc/rand.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/rand.txt -------------------------------------------------------------------------------- /tests/dc/rand_results.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 1 3 | 1 4 | -------------------------------------------------------------------------------- /tests/dc/read.txt: -------------------------------------------------------------------------------- 1 | 3 4^pR 2 | -------------------------------------------------------------------------------- /tests/dc/read_errors.txt: -------------------------------------------------------------------------------- 1 | 2 | ? 3 | -------------------------------------------------------------------------------- /tests/dc/read_results.txt: -------------------------------------------------------------------------------- 1 | 81 2 | -------------------------------------------------------------------------------- /tests/dc/scientific.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/scientific.txt -------------------------------------------------------------------------------- /tests/dc/scientific_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/scientific_results.txt -------------------------------------------------------------------------------- /tests/dc/scripts/all.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/scripts/all.txt -------------------------------------------------------------------------------- /tests/dc/scripts/array.dc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/scripts/array.dc -------------------------------------------------------------------------------- /tests/dc/scripts/array.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/scripts/array.txt -------------------------------------------------------------------------------- /tests/dc/scripts/asciify.dc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/scripts/asciify.dc -------------------------------------------------------------------------------- /tests/dc/scripts/asciify.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/scripts/asciify.txt -------------------------------------------------------------------------------- /tests/dc/scripts/easter.dc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/scripts/easter.dc -------------------------------------------------------------------------------- /tests/dc/scripts/easter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/scripts/easter.txt -------------------------------------------------------------------------------- /tests/dc/scripts/else.dc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/scripts/else.dc -------------------------------------------------------------------------------- /tests/dc/scripts/else.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/scripts/else.txt -------------------------------------------------------------------------------- /tests/dc/scripts/factorial.dc: -------------------------------------------------------------------------------- 1 | #! /usr/bin/dc 2 | [lb1+dsb*plb50>x]sx 3 | 0sb1 4 | lxx 5 | -------------------------------------------------------------------------------- /tests/dc/scripts/factorial.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/scripts/factorial.txt -------------------------------------------------------------------------------- /tests/dc/scripts/loop.dc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/scripts/loop.dc -------------------------------------------------------------------------------- /tests/dc/scripts/loop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/scripts/loop.txt -------------------------------------------------------------------------------- /tests/dc/scripts/no_clamp.dc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/scripts/no_clamp.dc -------------------------------------------------------------------------------- /tests/dc/scripts/no_clamp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/scripts/no_clamp.txt -------------------------------------------------------------------------------- /tests/dc/scripts/prime.dc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/scripts/prime.dc -------------------------------------------------------------------------------- /tests/dc/scripts/quit.dc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/scripts/quit.dc -------------------------------------------------------------------------------- /tests/dc/scripts/quit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/scripts/quit.txt -------------------------------------------------------------------------------- /tests/dc/scripts/stream.dc: -------------------------------------------------------------------------------- 1 | 0si[liPli1+sili65536>x]ddsxPx 2 | -------------------------------------------------------------------------------- /tests/dc/scripts/stream.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/scripts/stream.txt -------------------------------------------------------------------------------- /tests/dc/scripts/weird.dc: -------------------------------------------------------------------------------- 1 | #! /usr/bin/dc 2 | zp198202389.289374pzp[He World!]SzpzXfrfxzpfR 3 | -------------------------------------------------------------------------------- /tests/dc/scripts/weird.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/scripts/weird.txt -------------------------------------------------------------------------------- /tests/dc/shift.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/shift.txt -------------------------------------------------------------------------------- /tests/dc/shift_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/shift_results.txt -------------------------------------------------------------------------------- /tests/dc/sqrt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/sqrt.txt -------------------------------------------------------------------------------- /tests/dc/sqrt_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/sqrt_results.txt -------------------------------------------------------------------------------- /tests/dc/stack_len.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/stack_len.txt -------------------------------------------------------------------------------- /tests/dc/stack_len_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/stack_len_results.txt -------------------------------------------------------------------------------- /tests/dc/stdin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/stdin.txt -------------------------------------------------------------------------------- /tests/dc/stdin_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/stdin_results.txt -------------------------------------------------------------------------------- /tests/dc/strings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/strings.txt -------------------------------------------------------------------------------- /tests/dc/strings_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/strings_results.txt -------------------------------------------------------------------------------- /tests/dc/subtract.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/subtract.txt -------------------------------------------------------------------------------- /tests/dc/subtract_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/subtract_results.txt -------------------------------------------------------------------------------- /tests/dc/trunc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/trunc.txt -------------------------------------------------------------------------------- /tests/dc/trunc_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/trunc_results.txt -------------------------------------------------------------------------------- /tests/dc/vars.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/vars.txt -------------------------------------------------------------------------------- /tests/dc/vars_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/dc/vars_results.txt -------------------------------------------------------------------------------- /tests/error.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/error.sh -------------------------------------------------------------------------------- /tests/errors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/errors.sh -------------------------------------------------------------------------------- /tests/extra_required.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/extra_required.txt -------------------------------------------------------------------------------- /tests/fuzzing/bc_afl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/fuzzing/bc_afl.yaml -------------------------------------------------------------------------------- /tests/fuzzing/bc_inputs1/len.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/fuzzing/bc_inputs1/len.bc -------------------------------------------------------------------------------- /tests/fuzzing/bc_inputs1/lib12.txt: -------------------------------------------------------------------------------- 1 | uint(0) 2 | -------------------------------------------------------------------------------- /tests/fuzzing/bc_inputs1/lib15.txt: -------------------------------------------------------------------------------- 1 | uint(1) 2 | -------------------------------------------------------------------------------- /tests/fuzzing/bc_inputs1/lib21.txt: -------------------------------------------------------------------------------- 1 | int(1) 2 | -------------------------------------------------------------------------------- /tests/fuzzing/bc_inputs1/line_loop_quit1.txt: -------------------------------------------------------------------------------- 1 | 3 2 | for (i = 0; i < 3; ++i) i; quit 3 | -------------------------------------------------------------------------------- /tests/fuzzing/bc_inputs2/02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/fuzzing/bc_inputs2/02.txt -------------------------------------------------------------------------------- /tests/fuzzing/bc_inputs2/03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/fuzzing/bc_inputs2/03.txt -------------------------------------------------------------------------------- /tests/fuzzing/bc_inputs2/06.txt: -------------------------------------------------------------------------------- 1 | while (i == 0) { 2 | -------------------------------------------------------------------------------- /tests/fuzzing/bc_inputs2/07.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/fuzzing/bc_inputs2/07.txt -------------------------------------------------------------------------------- /tests/fuzzing/bc_inputs2/10.txt: -------------------------------------------------------------------------------- 1 | d000$++ 2 | -------------------------------------------------------------------------------- /tests/fuzzing/bc_inputs2/12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/fuzzing/bc_inputs2/12.txt -------------------------------------------------------------------------------- /tests/fuzzing/bc_inputs2/16.txt: -------------------------------------------------------------------------------- 1 | "0 -------------------------------------------------------------------------------- /tests/fuzzing/bc_inputs2/line_loop_quit2.txt: -------------------------------------------------------------------------------- 1 | 3 2 | for (i = 0; i < 3; ++i) i; \ 3 | quit 4 | -------------------------------------------------------------------------------- /tests/fuzzing/dc_inputs/01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/fuzzing/dc_inputs/01.txt -------------------------------------------------------------------------------- /tests/fuzzing/dc_inputs/02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/fuzzing/dc_inputs/02.txt -------------------------------------------------------------------------------- /tests/fuzzing/dc_inputs/03.txt: -------------------------------------------------------------------------------- 1 | 0 lip1-si0l0+200sx_9lq+pR 30.x 2 | [li100L0dp1+s+sX10lM<0]sL0sJlLx 3 | -------------------------------------------------------------------------------- /tests/fuzzing/dc_inputs/04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/fuzzing/dc_inputs/04.txt -------------------------------------------------------------------------------- /tests/fuzzing/dc_inputs/05.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/fuzzing/dc_inputs/05.txt -------------------------------------------------------------------------------- /tests/fuzzing/dc_inputs/06.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/fuzzing/dc_inputs/06.txt -------------------------------------------------------------------------------- /tests/fuzzing/dc_inputs/07.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/fuzzing/dc_inputs/07.txt -------------------------------------------------------------------------------- /tests/fuzzing/dc_inputs/08.txt: -------------------------------------------------------------------------------- 1 | 0 2+p[lip1-si0li!=0^di>0]S098sil0x 2 | -------------------------------------------------------------------------------- /tests/fuzzing/dc_inputs/09.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/fuzzing/dc_inputs/09.txt -------------------------------------------------------------------------------- /tests/fuzzing/dc_inputs/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/fuzzing/dc_inputs/10.txt -------------------------------------------------------------------------------- /tests/fuzzing/dc_inputs/11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/fuzzing/dc_inputs/11.txt -------------------------------------------------------------------------------- /tests/fuzzing/dc_inputs/12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/fuzzing/dc_inputs/12.txt -------------------------------------------------------------------------------- /tests/fuzzing/dc_inputs/13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/fuzzing/dc_inputs/13.txt -------------------------------------------------------------------------------- /tests/fuzzing/dc_inputs/14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/fuzzing/dc_inputs/14.txt -------------------------------------------------------------------------------- /tests/fuzzing/dc_inputs/15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/fuzzing/dc_inputs/15.txt -------------------------------------------------------------------------------- /tests/fuzzing/dc_inputs/16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/fuzzing/dc_inputs/16.txt -------------------------------------------------------------------------------- /tests/fuzzing/dc_inputs/17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/fuzzing/dc_inputs/17.txt -------------------------------------------------------------------------------- /tests/fuzzing/dc_inputs/18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/fuzzing/dc_inputs/18.txt -------------------------------------------------------------------------------- /tests/fuzzing/dc_inputs/20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/fuzzing/dc_inputs/20.txt -------------------------------------------------------------------------------- /tests/fuzzing/dc_inputs/21.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/fuzzing/dc_inputs/21.txt -------------------------------------------------------------------------------- /tests/fuzzing/dc_inputs/22.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/fuzzing/dc_inputs/22.txt -------------------------------------------------------------------------------- /tests/fuzzing/dc_inputs/23.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/fuzzing/dc_inputs/23.txt -------------------------------------------------------------------------------- /tests/fuzzing/dc_inputs/24.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/fuzzing/dc_inputs/24.txt -------------------------------------------------------------------------------- /tests/fuzzing/dc_inputs/25.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/fuzzing/dc_inputs/25.txt -------------------------------------------------------------------------------- /tests/fuzzing/dc_inputs/26.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/fuzzing/dc_inputs/26.txt -------------------------------------------------------------------------------- /tests/fuzzing/dc_inputs/27.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/fuzzing/dc_inputs/27.txt -------------------------------------------------------------------------------- /tests/fuzzing/dc_inputs/28.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/fuzzing/dc_inputs/28.txt -------------------------------------------------------------------------------- /tests/fuzzing/dc_inputs/29.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/fuzzing/dc_inputs/29.txt -------------------------------------------------------------------------------- /tests/fuzzing/dc_inputs/30.txt: -------------------------------------------------------------------------------- 1 | 0;0[]0:b;bs0l0x;0 2 | -------------------------------------------------------------------------------- /tests/fuzzing/dc_inputs/abs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/fuzzing/dc_inputs/abs.txt -------------------------------------------------------------------------------- /tests/fuzzing/dc_inputs/add.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/fuzzing/dc_inputs/add.txt -------------------------------------------------------------------------------- /tests/fuzzing/dc_inputs/else.dc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/fuzzing/dc_inputs/else.dc -------------------------------------------------------------------------------- /tests/fuzzing/dc_inputs/loop.dc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/fuzzing/dc_inputs/loop.dc -------------------------------------------------------------------------------- /tests/fuzzing/dc_inputs/quit.dc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/fuzzing/dc_inputs/quit.dc -------------------------------------------------------------------------------- /tests/fuzzing/dc_inputs/stream.dc: -------------------------------------------------------------------------------- 1 | #! /usr/bin/dc 2 | 0si[liPlid1+sili4096>x]ddsxPx 3 | -------------------------------------------------------------------------------- /tests/fuzzing/dc_inputs/weird.dc: -------------------------------------------------------------------------------- 1 | #! /usr/bin/dc 2 | zp198202389.289374pzp[He World!]SzpzXfrfxzpfR 3 | -------------------------------------------------------------------------------- /tests/history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/history.py -------------------------------------------------------------------------------- /tests/history.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/history.sh -------------------------------------------------------------------------------- /tests/script.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/script.sed -------------------------------------------------------------------------------- /tests/script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/script.sh -------------------------------------------------------------------------------- /tests/scripts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/scripts.sh -------------------------------------------------------------------------------- /tests/stdin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/stdin.sh -------------------------------------------------------------------------------- /tests/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/tests/test.sh -------------------------------------------------------------------------------- /vs/bc.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/vs/bc.sln -------------------------------------------------------------------------------- /vs/bc.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/vs/bc.vcxproj -------------------------------------------------------------------------------- /vs/bc.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/vs/bc.vcxproj.filters -------------------------------------------------------------------------------- /vs/bcl.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/vs/bcl.sln -------------------------------------------------------------------------------- /vs/bcl.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/vs/bcl.vcxproj -------------------------------------------------------------------------------- /vs/bcl.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/vs/bcl.vcxproj.filters -------------------------------------------------------------------------------- /vs/tests/tests_bc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/vs/tests/tests_bc.bat -------------------------------------------------------------------------------- /vs/tests/tests_dc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinhoward/bc/HEAD/vs/tests/tests_dc.bat --------------------------------------------------------------------------------