sbase

suckless unix tools
git clone git://git.suckless.org/sbase
Log | Files | Refs | README | LICENSE

commit 229d7cc89a051ab139c6db889c864d1edb378e5a
parent 11d8e91042de565fa4ab81f2c8bf6aef14ded0e5
Author: pranomostro <pranomestro@gmail.com>
Date:   Sat, 25 Jun 2016 19:11:09 +0200

printf: support escaping '%' with '%%'. See printf(1p) EXAMPLES section.

Diffstat:
Mprintf.c | 4+++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/printf.c b/printf.c @@ -103,8 +103,10 @@ main(int argc, char *argv[]) arg = ""; cooldown = 1; } - } else + } else { putchar('%'); + continue; + } switch (format[i]) { case 'b':