blob: 7512573dd3bf5979458d6b95be88544feda03559 (
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
|
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <errno.h>
#include "zio.h"
int main(int argc, char *argv[])
{
FILE *file;
char line[1024];
size_t len;
if (!(file = fdzopen(fileno(stdin), "r", argc > 1 ? argv[1] : "g"))) {
fprintf(stderr, "%s\n", strerror(errno));
return 1;
}
while ((len = fread(line, sizeof(char), sizeof (line), file))) {
size_t ret = fwrite(line, sizeof(char), len, stdout);
if ((ret != len) && ferror(stdout)) {
clearerr(stdout);
}
}
fclose(file);
return 0;
}
|