aboutsummaryrefslogtreecommitdiff
path: root/miscutils (follow)
Commit message (Expand)AuthorAgeFilesLines
...
* bc: in non-interactive config, POSIX error functions never return nonzeroDenys Vlasenko2018-12-111-135/+16
* bc: use common_parse_init() in bc_vm_init()Denys Vlasenko2018-12-111-5/+1
* bc: fix EOF handling in bc_program_read()Denys Vlasenko2018-12-111-9/+11
* bc: tweak commentDenys Vlasenko2018-12-111-1/+2
* bc: convert bc_program_asciify to "z" functionDenys Vlasenko2018-12-111-7/+9
* bc: shrink bc_program_printStringDenys Vlasenko2018-12-111-71/+39
* bc: convert zbc_program_op to "z" function, fix a thinko in prev commitsDenys Vlasenko2018-12-111-6/+9
* bc: convert bc_program_logical to "z" functionDenys Vlasenko2018-12-111-4/+7
* bc: do not use "(cond ? f1 : f2)(params)" idiom, it messes up static function...Denys Vlasenko2018-12-111-39/+21
* bc: convert arithmetic calc functions to "z" logicDenys Vlasenko2018-12-111-355/+424
* bc: rename arithmetic calc functions to "z" functions, no code changesDenys Vlasenko2018-12-111-89/+88
* bc: move declarations around, no code changesDenys Vlasenko2018-12-111-39/+39
* bc: code shrink in zbc_lex_number()Denys Vlasenko2018-12-111-28/+36
* bc: make bc_program_pushVar "z-function"Denys Vlasenko2018-12-111-7/+13
* bc: improve "noninteractive" macro machinery so that even "return zero" code ...Denys Vlasenko2018-12-111-194/+201
* bc: it's not clear bc_vm_file() always exits on errors, remove ERRORS_ARE_FATALDenys Vlasenko2018-12-101-4/+1
* bc: more ERRORS_ARE_FATAL annotationsDenys Vlasenko2018-12-101-4/+29
* bc: stop checking for name length in bc_lex_name()Denys Vlasenko2018-12-101-9/+21
* bc: optimize non-interactive config: we know that many functions always succeedDenys Vlasenko2018-12-101-13/+60
* bc: in non-interactive config, let compiler know that error funcs do not returnDenys Vlasenko2018-12-101-26/+39
* bc: simplify bc_num_parseDecimal() furtherDenys Vlasenko2018-12-101-15/+12
* bc: make all function pointers FAST_FUNC, on i486 this saves ~400 bytesDenys Vlasenko2018-12-101-42/+39
* bc: 0xffffffffffffffff may be larger than unsigned longDenys Vlasenko2018-12-101-2/+2
* bc: optimize bc_vec_concat()Denys Vlasenko2018-12-101-3/+4
* bc: simplify bc_program_len()Denys Vlasenko2018-12-101-5/+7
* bc: simplify bc_program_print()Denys Vlasenko2018-12-101-6/+7
* bc: simplify bc_num_ulong2num()Denys Vlasenko2018-12-101-4/+13
* bc: move str-to-num conversion functions to their only caller, bc_num_parse()Denys Vlasenko2018-12-101-133/+133
* bc: further simplify string-to-number conversion codeDenys Vlasenko2018-12-091-1/+7
* bc: simplify string-tonumber conversion codeDenys Vlasenko2018-12-091-45/+43
* bc: no need to "set to zero" BcNum after bc_num_init(), it already isDenys Vlasenko2018-12-091-7/+10
* bc: add and use bc_num_init_DEF_SIZE()Denys Vlasenko2018-12-091-25/+29
* bc: in bc_program_execStr(), push two variables into inner scopeDenys Vlasenko2018-12-091-15/+12
* bc: in bc_program_exec(), push two variables into inner scopeDenys Vlasenko2018-12-091-121/+19
* bc: add accessors for G.prog.strs[idx], G.prog.fns[idx]Denys Vlasenko2018-12-091-20/+30
* bc: eliminate always the same params to bc_num_printBase()Denys Vlasenko2018-12-081-11/+11
* bc: remove redundant error checks in bc_parse_print()Denys Vlasenko2018-12-081-8/+10
* bc: stop propagating pointer to G.prog.nchars deep into printing functionsDenys Vlasenko2018-12-081-48/+45
* bc: do not pass line width in parameters, it's in globalsDenys Vlasenko2018-12-081-28/+29
* bc: remove "ready for more input" message, GNU bc does not print thatDenys Vlasenko2018-12-081-12/+4
* bc: trim banner, use empty interactive prompts (GNU bc compat)Denys Vlasenko2018-12-081-19/+19
* dc: fix "small dc" to have standard command line APIDenys Vlasenko2018-12-082-25/+48
* bc: replace G.eof with a special exit code of bc_vm_stdin()Denys Vlasenko2018-12-071-6/+9
* bc: convert two macros to functions, unwing one complex max(a,min(b,c))Denys Vlasenko2018-12-071-9/+20
* bc: do not perform domr limit checks when they can't work (e.g. on 32-bit arc...Denys Vlasenko2018-12-071-33/+76
* bc: pull temporary into a registerDenys Vlasenko2018-12-071-7/+10
* bc: use more compact parsing data structuresDenys Vlasenko2018-12-071-27/+35
* bc: use only G_interrupt as interrupt flagDenys Vlasenko2018-12-071-6/+7
* bc: fix exit codes for FEATURE_CLEAN_UP=yDenys Vlasenko2018-12-061-8/+15
* dc: fix testsuiteDenys Vlasenko2018-12-061-0/+1