home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
World of Shareware - Software Farm 2
/
wosw_2.zip
/
wosw_2
/
CPROG
/
FDF101.ZIP
/
ELIB.ZOO
/
fdates.c
< prev
next >
Wrap
C/C++ Source or Header
|
1992-04-30
|
383b
|
21 lines
#include <io.h>
/*
* copy_file_dates()
*
* Input:
* src_handle - handle of source file
* dst_handle - handle of destination file
* Comments:
* copies the date and time from one file to another
*/
void copy_file_dates(int src_handle, int dst_handle)
{
struct ftime ftime_buf;
getftime(src_handle, &ftime_buf);
setftime(dst_handle, &ftime_buf);
}