aboutsummaryrefslogtreecommitdiff
path: root/coreutils/printf.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* Merge branch 'busybox' into mergeRon Yorston2023-04-091-1/+1
|\
| * hush: printf builtin with no arguments should not exitDenys Vlasenko2023-04-031-1/+1
* | Merge busybox into mergeRon Yorston2021-12-271-1/+1
|\|
| * printf: allow 0 as a flag and allow multiple flagsRon Yorston2021-12-171-1/+1
* | printf: improved error handlingRon Yorston2021-08-151-19/+23
* | Merge branch 'busybox' into mergeRon Yorston2021-05-141-0/+1
|\|
| * timeout,top,watch,ping: parse NN.N fractional duration in locales with other ...Denys Vlasenko2021-03-231-0/+1
* | printf: better support for escape sequencesRon Yorston2021-02-031-48/+60
* | printf: code shrinkRon Yorston2021-01-271-19/+7
* | tls: avoid unnecessary changes to POSIX build, part 2Ron Yorston2021-01-251-0/+2
* | printf: ensure '\045' is printed as '%'Ron Yorston2020-08-281-5/+10
* | printf: prevent '\0' in format string from truncating outputFRP-3578-g359211429Ron Yorston2020-08-241-1/+9
* | printf: emit more contiguous text to improve escape sequencesRon Yorston2020-06-041-1/+50
|/
* libbb: reduce the overhead of single parameter bb_error_msg() callsJames Byrne2019-07-021-1/+1
* config: update size informationDenys Vlasenko2018-12-281-1/+1
* printf: fix printf "%u\n" +18446744073709551614Denys Vlasenko2018-10-301-0/+8
* printf: fix printing +-prefixed numbersBernhard Reutner-Fischer2018-10-191-2/+3
* whitespace and comment format fixes, no code changesDenys Vlasenko2017-10-051-1/+2
* whitespace and comment format fixes, no code changesDenys Vlasenko2017-10-051-35/+33
* regularize format of source file headers, no code changesDenys Vlasenko2017-09-181-1/+0
* config: do not use `a' quoting in help textsDenys Vlasenko2017-08-021-1/+1
* config: deindent all help textsDenys Vlasenko2017-07-211-2/+2
* Update menuconfig items with approximate applet sizesDenys Vlasenko2017-07-181-1/+1
* printf: fix format string sanity checkRon Yorston2017-07-181-2/+2
* shells: make hush test optional, rename ASH_BUILTIN_foo -> ASH_fooDenys Vlasenko2017-01-101-1/+4
* Convert all coreutils/* applets to "new style" applet definitionsDenys Vlasenko2016-11-231-0/+11
* printf: short-circuit output when argument to %b includes \cRon Yorston2016-01-311-3/+9
* printf: fix this case: printf "%b" '\0057usr\0057bin\n'Denys Vlasenko2012-03-071-2/+17
* printf: trim help textDenys Vlasenko2012-03-071-4/+3
* move help text from include/usage.src.h to coreutils/*.cPere Orga2011-03-311-0/+10
* libbb: introduce and use strcpy_and_process_escape_sequencesDenys Vlasenko2010-10-231-10/+8
* nandwrite: complain on malformed -s NUMDenys Vlasenko2010-08-291-2/+2
* *: make GNU licensing statement forms more regularDenys Vlasenko2010-08-161-1/+1
* printf: (allegedly) fix testsuite failureDenys Vlasenko2009-06-271-0/+2
* printf: fix exit code on conversion errorDenys Vlasenko2009-06-181-13/+11
* printf: accept negative numbers for %x; sh: overflowed numbers are 0Denys Vlasenko2009-06-051-0/+8
* printf: fix 1.12.0 breakage (from %*d fix). It was misinterpreting "*"Denis Vlasenko2009-03-031-3/+3
* printf: make integer format strings print long long-sized values.Denis Vlasenko2009-01-041-53/+65
* ash: printf builtin with no arguments should not exitDenis Vlasenko2008-12-101-1/+8
* ash: dont allow e.g. exec <&10 to attach to stript's fd!Denis Vlasenko2008-07-251-2/+5
* fix all cases of strcpy on overlapping strings.Denis Vlasenko2008-07-221-1/+1
* printf: do not print garbage on "%Ld". closes bug 4214.Denis Vlasenko2008-07-181-6/+15
* printf: fix %b, fix several bugs in %*.*, fix compat issues withDenis Vlasenko2008-07-181-78/+121
* printf: protect against bogus format specifiers. Hopefully closes bug 4184Denis Vlasenko2008-07-171-9/+13
* *: rename ATTRIBUTE_XXX to just XXX.Denis Vlasenko2008-07-051-1/+1
* ash: optional printf builtin. +25 bytes if off, +35 if on.Denis Vlasenko2008-06-011-3/+15
* printf: fix a trivial bugDenis Vlasenko2008-05-311-1/+1
* printf: code shrink by eliminating string alloc/copyDenis Vlasenko2008-05-311-28/+27
* - use EXIT_{SUCCESS,FAILURE}. No object-code changesBernhard Reutner-Fischer2008-05-191-1/+1
* printf: fix printf -%s- foo, printf -- -%s- foo (bug 3354)Denis Vlasenko2008-05-181-28/+24