Age | Commit message (Expand) | Author |
2020-06-24 | bc: placate a "defined but not used" warning | Denys Vlasenko |
2019-11-23 | bc: fix comparison bug, closes 12336 | Denys Vlasenko |
2019-09-12 | bc: Add 'U' suffix in UINT_MAX preprocessor check | Kang-Che Sung |
2019-09-05 | dc: Parse error & fix out of bounds read in xc_program_printString | Brian Foley |
2019-09-05 | dc: Fix segfault when executing strings generated using asciify | Brian Foley |
2019-09-05 | dc: execute shouldn't pop if stack head is not a string | Brian Foley |
2019-07-02 | libbb: reduce the overhead of single parameter bb_error_msg() calls | James Byrne |
2019-06-08 | bc: placate compiler warnings | Denys Vlasenko |
2019-01-25 | bc: implement pass-by-reference code from upstream | Denys Vlasenko |
2019-01-09 | bc: code shrink | Denys Vlasenko |
2019-01-08 | bc: remove "empty expression" check/message, parsing fails in these cases anyway | Denys Vlasenko |
2019-01-08 | bc: zbc_parse_expr_empty_ok() is unused except by zbc_parse_expr(), fold it in | Denys Vlasenko |
2019-01-08 | bc: disallow invalid syntax like "{ print 1 print 2 }" | Denys Vlasenko |
2019-01-07 | sleep: support "inf" | Denys Vlasenko |
2019-01-04 | bc: shorten "limits" output | Denys Vlasenko |
2019-01-04 | bc: formatting changes, added a FIXME comment, no logic changes | Denys Vlasenko |
2019-01-04 | bc: support void functions (GNU compat) | Denys Vlasenko |
2019-01-04 | dc: fit returning of string | Denys Vlasenko |
2019-01-04 | dc: fix '?' | Denys Vlasenko |
2019-01-04 | bc: eliminate struct BcInstPtr::results_len_before_call, it is redundant | Denys Vlasenko |
2019-01-04 | bc: add a palceholder comment for "void" return | Denys Vlasenko |
2019-01-04 | bc: remove extra div/0 test, remove test for string function parameter | Denys Vlasenko |
2019-01-03 | bc: fix "...; return}" to work, disallow "return ()" | Denys Vlasenko |
2019-01-02 | bc: make error line number also size_t, like everything else | Denys Vlasenko |
2019-01-02 | bc: speed up string printing, fix print "" | Denys Vlasenko |
2019-01-01 | bc: upstream fixes | Denys Vlasenko |
2019-01-01 | bc: in xc_read_line(), check ^C on NUL input bytes too | Denys Vlasenko |
2018-12-31 | bc: remove superfluous assigment | Denys Vlasenko |
2018-12-31 | bc: support ibase up to 36 (GNU compat) | Denys Vlasenko |
2018-12-31 | bc: fold xc_lex_more_input() into peek_inbuf() | Denys Vlasenko |
2018-12-30 | bc: tidying up, no logic changes | Denys Vlasenko |
2018-12-29 | bc: simplify representation of 0.5 in sqrt() | Denys Vlasenko |
2018-12-29 | bc: remove special-cased assignment to ibase, it works correctly with general... | Denys Vlasenko |
2018-12-29 | bc: more fixes for unusual input bases | Denys Vlasenko |
2018-12-29 | bc: fix handling of "digits" above 9 | Denys Vlasenko |
2018-12-28 | bc: bc enables FEATURE_DC_BIG, for correct dc testsuite operation | Denys Vlasenko |
2018-12-28 | bc: rename config options | Denys Vlasenko |
2018-12-28 | config: update size information | Denys Vlasenko |
2018-12-27 | bc: rename functions common to bc and dc as xc_FOO() | Denys Vlasenko |
2018-12-27 | bc: G.prog.zero does not need initializing num[] vector | Denys Vlasenko |
2018-12-26 | bc: use ALIGN1 where appropriate | Denys Vlasenko |
2018-12-26 | bc: undo debugging change, add a small optimization | Denys Vlasenko |
2018-12-26 | bc: simple speedups | Denys Vlasenko |
2018-12-26 | bc: use '\0' insteads of 0xff (BC_PARSE_STREND) as name terminator | Denys Vlasenko |
2018-12-26 | bc: reduce indentation, no code changes | Denys Vlasenko |
2018-12-26 | bc: fix "bc only" build | Denys Vlasenko |
2018-12-26 | bc: fix "dc only" build | Denys Vlasenko |
2018-12-26 | bc: comment out code which appears to be never reached | Denys Vlasenko |
2018-12-26 | bc: remove all logic for multi-line buffering | Denys Vlasenko |
2018-12-26 | bc: prepare for char-by-char input handling | Denys Vlasenko |