aboutsummaryrefslogtreecommitdiff
path: root/miscutils/bc.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* bc: placate gcc (it thinks 's' can be uninitialized here)Denys Vlasenko2020-12-291-8/+10
* bc: do not allocate line editing state until neededDenys Vlasenko2020-12-211-19/+18
* decrease padding: gcc-9.3.1 slaps 32-byte alignment on arrays willy-nillyDenys Vlasenko2020-11-301-1/+1
* bc: placate a "defined but not used" warningDenys Vlasenko2020-06-241-0/+2
* bc: fix comparison bug, closes 12336Denys Vlasenko2019-11-231-1/+4
* bc: Add 'U' suffix in UINT_MAX preprocessor checkKang-Che Sung2019-09-121-2/+2
* dc: Parse error & fix out of bounds read in xc_program_printStringBrian Foley2019-09-051-2/+4
* dc: Fix segfault when executing strings generated using asciifyBrian Foley2019-09-051-2/+8
* dc: execute shouldn't pop if stack head is not a stringBrian Foley2019-09-051-1/+2
* libbb: reduce the overhead of single parameter bb_error_msg() callsJames Byrne2019-07-021-6/+6
* bc: placate compiler warningsDenys Vlasenko2019-06-081-2/+2
* bc: implement pass-by-reference code from upstreamDenys Vlasenko2019-01-251-86/+185
* bc: code shrinkDenys Vlasenko2019-01-091-14/+14
* bc: remove "empty expression" check/message, parsing fails in these cases anywayDenys Vlasenko2019-01-081-3/+4
* bc: zbc_parse_expr_empty_ok() is unused except by zbc_parse_expr(), fold it inDenys Vlasenko2019-01-081-36/+25
* bc: disallow invalid syntax like "{ print 1 print 2 }"Denys Vlasenko2019-01-081-15/+21
* sleep: support "inf"Denys Vlasenko2019-01-071-1/+0
* bc: shorten "limits" outputDenys Vlasenko2019-01-041-4/+1
* bc: formatting changes, added a FIXME comment, no logic changesDenys Vlasenko2019-01-041-5/+8
* bc: support void functions (GNU compat)Denys Vlasenko2019-01-041-19/+56
* dc: fit returning of stringDenys Vlasenko2019-01-041-5/+13
* dc: fix '?'Denys Vlasenko2019-01-041-9/+4
* bc: eliminate struct BcInstPtr::results_len_before_call, it is redundantDenys Vlasenko2019-01-041-10/+1
* bc: add a palceholder comment for "void" returnDenys Vlasenko2019-01-041-11/+15
* bc: remove extra div/0 test, remove test for string function parameterDenys Vlasenko2019-01-041-8/+7
* bc: fix "...; return}" to work, disallow "return ()"Denys Vlasenko2019-01-031-8/+5
* bc: make error line number also size_t, like everything elseDenys Vlasenko2019-01-021-6/+8
* bc: speed up string printing, fix print ""Denys Vlasenko2019-01-021-44/+22
* bc: upstream fixesDenys Vlasenko2019-01-011-83/+94
* bc: in xc_read_line(), check ^C on NUL input bytes tooDenys Vlasenko2019-01-011-4/+6
* bc: remove superfluous assigmentDenys Vlasenko2018-12-311-1/+2
* bc: support ibase up to 36 (GNU compat)Denys Vlasenko2018-12-311-19/+31
* bc: fold xc_lex_more_input() into peek_inbuf()Denys Vlasenko2018-12-311-22/+9
* bc: tidying up, no logic changesDenys Vlasenko2018-12-301-43/+44
* bc: simplify representation of 0.5 in sqrt()Denys Vlasenko2018-12-291-10/+15
* bc: remove special-cased assignment to ibase, it works correctly with general...Denys Vlasenko2018-12-291-24/+19
* bc: more fixes for unusual input basesDenys Vlasenko2018-12-291-6/+13
* bc: fix handling of "digits" above 9Denys Vlasenko2018-12-291-19/+63
* bc: bc enables FEATURE_DC_BIG, for correct dc testsuite operationDenys Vlasenko2018-12-281-1/+1
* bc: rename config optionsDenys Vlasenko2018-12-281-37/+26
* config: update size informationDenys Vlasenko2018-12-281-2/+2
* bc: rename functions common to bc and dc as xc_FOO()Denys Vlasenko2018-12-271-408/+397
* bc: G.prog.zero does not need initializing num[] vectorDenys Vlasenko2018-12-271-2/+2
* bc: use ALIGN1 where appropriateDenys Vlasenko2018-12-261-4/+4
* bc: undo debugging change, add a small optimizationDenys Vlasenko2018-12-261-2/+2
* bc: simple speedupsDenys Vlasenko2018-12-261-1/+28
* bc: use '\0' insteads of 0xff (BC_PARSE_STREND) as name terminatorDenys Vlasenko2018-12-261-24/+10
* bc: reduce indentation, no code changesDenys Vlasenko2018-12-261-824/+823
* bc: fix "bc only" buildDenys Vlasenko2018-12-261-1/+1
* bc: fix "dc only" buildDenys Vlasenko2018-12-261-1/+1