projects
/
tools.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7ebc44a
)
round: ignore empty lines
author
Jann Horn
<jann@thejh.net>
Wed, 30 Apr 2014 14:09:43 +0000
(16:09 +0200)
committer
Jann Horn
<jann@thejh.net>
Wed, 30 Apr 2014 14:09:43 +0000
(16:09 +0200)
math/round.c
patch
|
blob
|
history
diff --git
a/math/round.c
b/math/round.c
index
e422fd0
..
f87d3c1
100644
(file)
--- 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);