summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 35f63f6)
raw | patch | inline | side by side (parent: 35f63f6)
author | Gert van Valkenhoef <g.h.m.van.valkenhoef@rug.nl> | |
Wed, 16 Nov 2011 20:12:10 +0000 (20:12 +0000) | ||
committer | Gert van Valkenhoef <g.h.m.van.valkenhoef@rug.nl> | |
Wed, 16 Nov 2011 20:12:10 +0000 (20:12 +0000) |
convert.c | [deleted file] | patch | blob | history |
diff --git a/convert.c b/convert.c
--- a/convert.c
+++ /dev/null
@@ -1,12 +0,0 @@
-#include <stdio.h>
-
-int main(int argc, char *argv[]) {
- int c;
- while ((c = getchar()) != EOF) {
- if (c == '\r') {
- putchar('\n');
- } else {
- putchar(c);
- }
- }
-}