blob: d705e4ccb3091b3fa8282ebffe915cd94eb39252 (
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[1<<13];
size_t len;
if (!(file = fdzopen(fileno(stdout), "w", argc > 1 ? argv[1] : "g"))) {
fprintf(stderr, "%s\n", strerror(errno));
return 1;
}
while ((len = fread(line, sizeof(char), sizeof (line), stdin))) {
size_t ret = fwrite(line, sizeof(char), len, file);
if ((ret != len) && ferror(stdout)) {
clearerr(stdout);
}
}
fclose(file);
return 0;
}
|