home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng)
/
ProfitPress-MegaCDROM2.B6I
/
UTILITY
/
FILE
/
DOCP_1_1.ZIP
/
ELIB.ZIP
/
FDATES.C
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
C/C++ Source or Header
|
1992-04-29
|
383 b
|
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);
}