aboutsummaryrefslogtreecommitdiff
path: root/LICENSE (unfollow)
Commit message (Expand)AuthorFilesLines
2018-12-30bc: tidying up, no logic changesDenys Vlasenko1-43/+44
2018-12-29bc: simplify representation of 0.5 in sqrt()Denys Vlasenko1-10/+15
2018-12-29bc: remove special-cased assignment to ibase, it works correctly with general...Denys Vlasenko1-24/+19
2018-12-29bc: more fixes for unusual input basesDenys Vlasenko3-6/+81
2018-12-29bc: fix handling of "digits" above 9Denys Vlasenko3-19/+103
2018-12-28config: dpkg_deb should be dpkg-debDenys Vlasenko1-1/+1
2018-12-28config: more tweaksDenys Vlasenko6-12/+7
2018-12-28bc: bc enables FEATURE_DC_BIG, for correct dc testsuite operationDenys Vlasenko1-1/+1
2018-12-28config: add size information for three more appletsDenys Vlasenko4-5/+5
2018-12-28bc: rename config optionsDenys Vlasenko4-39/+33
2018-12-28config: add size information for udhcpcDenys Vlasenko2-5/+5
2018-12-28config: update size informationDenys Vlasenko262-313/+321
2018-12-27bc: rename functions common to bc and dc as xc_FOO()Denys Vlasenko1-408/+397
2018-12-27bc: G.prog.zero does not need initializing num[] vectorDenys Vlasenko1-2/+2
2018-12-27randomconfig fixesDenys Vlasenko6-12/+20
2018-12-26bc: use ALIGN1 where appropriateDenys Vlasenko1-4/+4
2018-12-26bc: undo debugging change, add a small optimizationDenys Vlasenko1-2/+2
2018-12-26bc: simple speedupsDenys Vlasenko1-1/+28
2018-12-26bc: use '\0' insteads of 0xff (BC_PARSE_STREND) as name terminatorDenys Vlasenko1-24/+10
2018-12-26bc: reduce indentation, no code changesDenys Vlasenko1-824/+823
2018-12-26bc: fix "bc only" buildDenys Vlasenko1-1/+1
2018-12-26bc: fix "dc only" buildDenys Vlasenko1-1/+1
2018-12-26bc: comment out code which appears to be never reachedDenys Vlasenko1-2/+3
2018-12-26bc: remove all logic for multi-line bufferingDenys Vlasenko1-125/+19
2018-12-26bc: prepare for char-by-char input handlingDenys Vlasenko2-237/+214
2018-12-26bc: fix handling of comment/string interactions while buffering inputDenys Vlasenko1-38/+74
2018-12-25bc: fix interactive handling of comments in strings and quotes in commentsDenys Vlasenko2-18/+34
2018-12-25bc: simplify input pointer manipulation while lexingDenys Vlasenko1-60/+55
2018-12-25bc: fold struct BcLex into BcParseDenys Vlasenko1-267/+262
2018-12-25bc: move BcLex::lex member to be the first in struct globalsDenys Vlasenko1-65/+65
2018-12-25bc: rename some members and macros, no code changesDenys Vlasenko1-129/+129
2018-12-25bc: shorten error messagesDenys Vlasenko1-8/+8
2018-12-25bc: make it clear that the code is adaptedGavin Howard1-2/+4
2018-12-25dc: add two testsDenys Vlasenko1-0/+10
2018-12-25bc: stop passing a pointer to G.prs down the call chainDenys Vlasenko1-327/+374
2018-12-25bc: make zbc_program_read() and zdc_program_execStr() use G.prsDenys Vlasenko1-46/+41
2018-12-25bc: fix interactive read()Denys Vlasenko1-25/+26
2018-12-25bc: add code to detect errors like "print 1 print 2"Denys Vlasenko1-10/+39
2018-12-25bc: allow {break} and {continue} (allow RBRACE to terminate them)Denys Vlasenko2-14/+11
2018-12-25bc: shrink parsing code a bit more, disallow "auto a b c" (without commas)Denys Vlasenko1-24/+22
2018-12-25bc: simplify bc_parse_expr_empty_ok()Denys Vlasenko1-20/+32
2018-12-25bc: simplify bc_parse_expr_empty_ok()Denys Vlasenko1-5/+9
2018-12-25bc: simplify bc_parse_expr_empty_ok()Denys Vlasenko1-16/+20
2018-12-24bc: BC_RESULT_ONE is bc-specificDenys Vlasenko1-84/+84
2018-12-24bc: partially deinline BC_PARSE_LEAF() macroDenys Vlasenko1-17/+27
2018-12-24bc: rename lexer variables, use smallints where appropriateDenys Vlasenko1-157/+155
2018-12-24bc: fix "bc -s" only warning on "define f()<newline>", not exitingDenys Vlasenko1-1/+3
2018-12-24bc: POSIX error/warn functions can be 'z' functions tooDenys Vlasenko1-36/+42
2018-12-24bc: remove unnecessary NULL initializersDenys Vlasenko1-16/+20
2018-12-24bc: move relational LEXs before math LEXs - shorten dc_LEX_to_INST[]Denys Vlasenko1-42/+39