From: Jann Horn Date: Wed, 30 Apr 2014 14:09:43 +0000 (+0200) Subject: round: ignore empty lines X-Git-Url: http://git.thejh.net/?p=tools.git;a=commitdiff_plain;h=56b86248a393e3dd5073189ca50cb262046839ac;ds=inline round: ignore empty lines --- diff --git a/math/round.c b/math/round.c index e422fd0..f87d3c1 100644 --- a/math/round.c +++ b/math/round.c @@ -6,6 +6,8 @@ int main(int argc, char **argv) { double target = strtod(argv[1], NULL); char line[128]; while (fgets(line, sizeof(line), stdin)) { + trim_end(line, "\r\n \t"); + if (!*line) continue; double n = strtod(line, NULL); double quot = n / target; quot = round(quot);