]> git.llucax.com Git - z.facultad/75.06/jacu.git/commitdiff
Utilidad para arreglar PDFs importados a texto.
authorLeandro Lucarella <llucax@gmail.com>
Sun, 20 Jun 2004 06:27:58 +0000 (06:27 +0000)
committerLeandro Lucarella <llucax@gmail.com>
Sun, 20 Jun 2004 06:27:58 +0000 (06:27 +0000)
util/fix.c [new file with mode: 0644]

diff --git a/util/fix.c b/util/fix.c
new file mode 100644 (file)
index 0000000..b6a3237
--- /dev/null
@@ -0,0 +1,7 @@
+#include <stdio.h>
+int main()
+{
+       int c;
+       while ((c = getchar()) != EOF) if (c != 12) putchar(c);
+       return 0;
+}