minor style changes

This commit is contained in:
dwts
2014-04-22 13:43:01 +03:00
committed by sin
parent 59d0b5cd97
commit b700d5a8ed
3 changed files with 24 additions and 19 deletions

15
cat.c
View File

@@ -25,14 +25,15 @@ main(int argc, char *argv[])
if(argc == 0) {
concat(stdin, "<stdin>", stdout, "<stdout>");
} else for(i = 0; i < argc; i++) {
if(!(fp = fopen(argv[i], "r"))) {
weprintf("fopen %s:", argv[i]);
continue;
} else {
for(i = 0; i < argc; i++) {
if(!(fp = fopen(argv[i], "r"))) {
weprintf("fopen %s:", argv[i]);
continue;
}
concat(fp, argv[i], stdout, "<stdout>");
fclose(fp);
}
concat(fp, argv[i], stdout, "<stdout>");
fclose(fp);
}
return EXIT_SUCCESS;
}