home *** CD-ROM | disk | FTP | other *** search
- /* FCOPY.H -- function prototypes */
- /* Updated May 12, 1992 */
-
- #define DISKFUL -2
- #define NOCOPY -3
-
- #if __STDC__
- #define _Cdecl
- #else
- #define _Cdecl cdecl
- #endif
-
- #ifdef __cplusplus
- extern "C" {
- #endif
-
- /* function prototypes */
-
- int _Cdecl _copyfile (int source, int target, char far *buf,
- unsigned bsize);
- int _Cdecl _farread (int handle, void far *buf, unsigned bsize);
- int _Cdecl _farwrite (int handle, void far *buf, unsigned bsize);
- int _Cdecl fcopy (char *sourcename, char *targetname);
- char *_Cdecl strtrim (char *string);
- int _Cdecl truename (char *pathname, char *qualname);
-
- #ifdef __cplusplus
- }
- #endif
-