From 836d5089caacd18f76c5f80ee3ebdbb61d0624c7 Mon Sep 17 00:00:00 2001 From: Leandro Lucarella Date: Sun, 20 Jun 2004 06:27:58 +0000 Subject: [PATCH] Utilidad para arreglar PDFs importados a texto. --- util/fix.c | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 util/fix.c diff --git a/util/fix.c b/util/fix.c new file mode 100644 index 0000000..b6a3237 --- /dev/null +++ b/util/fix.c @@ -0,0 +1,7 @@ +#include +int main() +{ + int c; + while ((c = getchar()) != EOF) if (c != 12) putchar(c); + return 0; +} -- 2.43.0