aboutsummaryrefslogtreecommitdiff
path: root/miscutils (follow)
Commit message (Expand)AuthorAgeFilesLines
* Merge branch 'busybox' into mergeRon Yorston2019-02-122-87/+360
|\
| * i2c_tools.c: i2ctransferNikolaus Voss2019-02-111-5/+3
| * i2ctransfer: new appletNikolaus Voss2019-02-101-1/+177
| * bc: implement pass-by-reference code from upstreamDenys Vlasenko2019-01-251-86/+185
* | iconv: depends on PLATFORM_MINGW32Ron Yorston2019-01-101-0/+1
* | Merge branch 'busybox' into mergeRon Yorston2019-01-1036-110/+7501
|\|
| * 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
| * config: more tweaksDenys Vlasenko2018-12-281-1/+1
| * 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-2834-44/+44
| * 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
| * randomconfig fixesDenys Vlasenko2018-12-271-1/+1
| * 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
| * bc: comment out code which appears to be never reachedDenys Vlasenko2018-12-261-2/+3
| * bc: remove all logic for multi-line bufferingDenys Vlasenko2018-12-261-125/+19
| * bc: prepare for char-by-char input handlingDenys Vlasenko2018-12-261-233/+210
| * bc: fix handling of comment/string interactions while buffering inputDenys Vlasenko2018-12-261-38/+74