about summary refs log tree commit diff stats
path: root/cat.c
diff options
context:
space:
mode:
Diffstat (limited to 'cat.c')
-rw-r--r--cat.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/cat.c b/cat.c
new file mode 100644
index 0000000..eaf8cd3
--- /dev/null
+++ b/cat.c
@@ -0,0 +1,10 @@
+// from section 1.5 of K&R
+#include <stdio.h>
+
+int main() {
+	int c;
+	while ((c = getchar()) != EOF) {
+		putchar(c);
+	}
+	return 0;
+}