Große Umstellung. Viel hinzugefügt.
[h316.git] / pc-tools / src-filters / paron.c
diff --git a/pc-tools/src-filters/paron.c b/pc-tools/src-filters/paron.c
new file mode 100644 (file)
index 0000000..f69eb9e
--- /dev/null
@@ -0,0 +1,18 @@
+#include <stdio.h>
+#include <math.h>
+#include <string.h>
+
+#define BUF_SIZ 100000
+#define LINE_LENGTH 72
+// ssize_t getline(char **lineptr, size_t *n, FILE *stream);
+
+int main(int argc, char ** argv){
+    char  buffer;
+    while (read(0,&buffer,1)) {
+        buffer|=128;
+        write(1,&buffer,1);
+    }
+            
+} // main()
+// Ende
+