/* * cat.c * * Read several file names from the command line. * Concatenate these files and print the result to the standard output. */ #include // Copy the content of one file to another; assume that the files are open. // Return the number of characters copied int filecopy(FILE *in, FILE *out) { } int main(int argc, char *argv[]) { return 0; }