home *** CD-ROM | disk | FTP | other *** search
- main() /* rename.c -- renames hello.c to hiya.c */
-
- {
- int error;
- char *old;
- char *new;
-
- old = "hello.c";
- new = "hiya.c";
-
- error = rename(old,new);
- if(error != 0)
- puts("Error detected; new file name may exist or old name not.");
- }