FreeBASIC  0.91.0
file_copy.c
Go to the documentation of this file.
1 /* file copy */
2 
3 #include "../fb.h"
4 
5 FBCALL int fb_FileCopy( const char *source, const char *destination )
6 {
7  return fb_CrtFileCopy( source, destination );
8 }