home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_10_02 / 1002014b < prev    next >
Text File  |  1991-12-17  |  323b  |  16 lines

  1.  
  2. Listing 2 -- the file rename.c
  3.  
  4. /* rename function -- UNIX version */
  5. #include "xstdio.h"
  6.  
  7.         /* UNIX system calls */
  8. int _Link(const char *, const char *);
  9. int _Unlink(const char *);
  10.  
  11. int (rename)(const char *old, const char *new)
  12.     {   /* rename a file */
  13.     return (_Link(old, new) ? -1 : _Unlink(old));
  14.     }
  15.  
  16.