From 56b86248a393e3dd5073189ca50cb262046839ac Mon Sep 17 00:00:00 2001 From: Jann Horn Date: Wed, 30 Apr 2014 16:09:43 +0200 Subject: [PATCH 1/1] round: ignore empty lines --- math/round.c | 2 ++ 1 file changed, 2 insertions(+) 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); -- 2.20.1