summaryrefslogtreecommitdiff
path: root/utilities/no13.c
blob: 1e948460215e08e5683491c27df6104e2d41638c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#include <fcntl.h>
#include <stdio.h>

main(int argc, char **argv)
{
	int fd, loop;
	char ch;
	char breakcnt = 0;

	if (argc != 2) {
		fprintf(stderr, "This program writes to stdout, so to be useful,\n\tit should be redirected (e.g no13 bla > bla.dat)\nusage: %s <filename>\n", argv[0]);
		exit(1);
	}
	fd = open(argv[1], O_RDONLY);
	while (read(fd, &ch, 1) == 1) {
		if (ch == 0x0d) {	// CR
			breakcnt++;
			continue;
		}
		if (ch == 0x1a)	// Ctrl-Z
			continue;

		if (ch != 0x0a) {	// LF
			if (breakcnt > 1) {
				for (loop = breakcnt; loop > 0; loop--)
					putchar(0x0d);
				putchar(0x0a);
			}
			breakcnt=0;
		}
		putchar(ch);
	}
	close(fd);
}