home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c025 / 1.ddi / RENAME.C < prev    next >
Encoding:
Text File  |  1985-01-24  |  252 b   |  15 lines

  1. main()    /* rename.c -- renames hello.c to hiya.c */
  2.  
  3. {
  4. int error;
  5. char *old;
  6. char *new;
  7.  
  8.     old = "hello.c";
  9.     new = "hiya.c";
  10.  
  11.     error =  rename(old,new);
  12.     if(error != 0)
  13.         puts("Error detected; new file name may exist or old name not.");
  14. }
  15.