2020-12-12 06:33:20 +00:00
|
|
|
#define _POSIX_C_SOURCE 200809L
|
|
|
|
|
2020-02-12 05:30:50 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2020-12-02 02:32:26 +00:00
|
|
|
#include <unistd.h>
|
2020-02-12 05:30:50 +00:00
|
|
|
|
|
|
|
int main(int argc, char *argv[]) {
|
2020-12-13 15:25:50 +00:00
|
|
|
FILE * cur_in_file;
|
2020-12-02 02:32:26 +00:00
|
|
|
int i; char c;
|
|
|
|
|
|
|
|
int using_unbuffered_output;
|
|
|
|
|
|
|
|
int error_occurred;
|
|
|
|
|
2020-12-13 15:25:50 +00:00
|
|
|
while((c = getopt(argc, argv, "u")) != -1) {
|
|
|
|
if(c == 'u') {
|
|
|
|
using_unbuffered_output = 1;
|
2020-02-12 05:30:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-28 03:38:10 +00:00
|
|
|
if(using_unbuffered_output) {
|
|
|
|
setvbuf(stdin, NULL, _IONBF, 15);
|
|
|
|
setvbuf(stdout, NULL, _IONBF, 15);
|
|
|
|
}
|
|
|
|
|
2020-12-13 15:25:50 +00:00
|
|
|
if(argc == 1 || optind == argc) {
|
|
|
|
cur_in_file = stdin;
|
|
|
|
for(c = fgetc(cur_in_file); c != EOF; c = fgetc(cur_in_file)) {
|
2022-02-28 03:38:10 +00:00
|
|
|
fprintf(stdout, "%c", c);
|
2020-12-02 02:32:26 +00:00
|
|
|
}
|
2020-12-13 15:25:50 +00:00
|
|
|
fclose(cur_in_file);
|
2020-12-02 02:32:26 +00:00
|
|
|
}
|
|
|
|
|
2020-12-13 15:25:50 +00:00
|
|
|
for(i = optind; i < argc; i++) {
|
2020-12-02 02:32:26 +00:00
|
|
|
if(argv[i][0] == '-' && argv[i][1] == '\0') {
|
2020-12-13 15:25:50 +00:00
|
|
|
cur_in_file = stdin;
|
2020-12-02 02:32:26 +00:00
|
|
|
}
|
2020-02-12 05:30:50 +00:00
|
|
|
else {
|
2020-12-13 15:25:50 +00:00
|
|
|
cur_in_file = fopen(argv[i], "r");
|
|
|
|
if(cur_in_file == NULL) {
|
|
|
|
fprintf(stderr, "%s: %s: No such file or directory\n", argv[0], argv[i]);
|
|
|
|
error_occurred = 1;
|
2020-02-12 05:30:50 +00:00
|
|
|
}
|
|
|
|
}
|
2020-12-13 15:25:50 +00:00
|
|
|
for(c = fgetc(cur_in_file); c != EOF; c = fgetc(cur_in_file)) {
|
2022-02-28 03:38:10 +00:00
|
|
|
fprintf(stdout, "%c", c);
|
2020-12-02 02:32:26 +00:00
|
|
|
}
|
2020-12-13 15:25:50 +00:00
|
|
|
fclose(cur_in_file);
|
2020-02-12 05:30:50 +00:00
|
|
|
}
|
|
|
|
|
2020-12-02 02:32:26 +00:00
|
|
|
if(error_occurred) {
|
2020-02-12 05:30:50 +00:00
|
|
|
return 1;
|
2020-12-02 02:32:26 +00:00
|
|
|
}
|
|
|
|
else {
|
2020-02-12 05:30:50 +00:00
|
|
|
return 0;
|
2020-12-02 02:32:26 +00:00
|
|
|
}
|
2020-02-12 05:30:50 +00:00
|
|
|
}
|