/* * copy-file.c * * usage: ./copy-file source-file destination-file */ int main(int argc, char *argv[]) { /* check command-line arguments */ /* open files */ /* do the copy */ /* clean up */ }