Ignore:
Timestamp:
Dec 2, 2004, 7:41:20 AM (21 years ago)
Author:
bird
Message:

rename reimplementation.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/emx/include/InnoTekLIBC/backend.h

    • Property cvs2svn:cvs-rev changed from 1.14 to 1.15
    r1677 r1678  
    289289int __libc_Back_fsFileStatFH(int fh, struct stat *pStat);
    290290
     291/**
     292 * Renames a file or directory.
     293 *
     294 * @returns 0 on success.
     295 * @returns Negative error code (errno.h) on failure.
     296 * @param   pszPathOld      Old file path.
     297 * @param   pszPathNew      New file path.
     298 *
     299 * @remark OS/2 doesn't preform the deletion of the pszPathNew atomically.
     300 */
     301int __libc_Back_fsRename(const char *pszPathOld, const char *pszPathNew);
    291302
    292303/** @defgroup __libc_Back_io   LIBC Backend - I/O and File Management.
Note: See TracChangeset for help on using the changeset viewer.