better section detection
[tridge/junkcode.git] / dosstrip.c
1 #include <stdio.h>
2
3 main()
4 {
5         int c;
6         while ((c=getchar()) != -1) {
7                 if (c == '\r') continue;
8                 putchar(c);
9         }
10 }
11