aboutsummaryrefslogtreecommitdiff
path: root/miscutils (follow)
Commit message (Expand)AuthorAgeFilesLines
...
* bc: remove BC_STATUS_EOF (again), the condition is detectable as len==0Denys Vlasenko2018-12-121-19/+9
* dc: fix EOF handling in case of last line being incompleteDenys Vlasenko2018-12-121-1/+3
* bc: further conversions to "z" logicDenys Vlasenko2018-12-121-27/+40
* bc: optimize bc_parse_pushIndex()Denys Vlasenko2018-12-121-7/+14
* bc: convert even more of lexer functions to "z" conventionDenys Vlasenko2018-12-121-112/+114
* bc: convert even more of lexer functions to "z" conventionDenys Vlasenko2018-12-121-148/+121
* bc: convert more of lexer functions to "z" conventionDenys Vlasenko2018-12-121-137/+137
* bc: partially convert lexer functions to "z" conventionDenys Vlasenko2018-12-121-118/+148
* bc: code shrink in bc_num_cmp()Denys Vlasenko2018-12-121-14/+12
* bc: simplify zbc_program_logical()Denys Vlasenko2018-12-121-11/+10
* bc: simplify nested read() checkDenys Vlasenko2018-12-121-7/+7
* 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