home *** CD-ROM | disk | FTP | other *** search
/ Boston 2 / boston-2.iso / DOS / PROGRAM / C / FCOPY / FCOPY.H < prev    next >
C/C++ Source or Header  |  1993-12-01  |  729b  |  30 lines

  1. /*  FCOPY.H  --  function prototypes  */
  2. /*  Updated May 12, 1992  */
  3.  
  4. #define DISKFUL -2
  5. #define NOCOPY  -3
  6.  
  7. #if __STDC__
  8. #define _Cdecl
  9. #else
  10. #define _Cdecl    cdecl
  11. #endif
  12.  
  13. #ifdef __cplusplus
  14. extern "C" {
  15. #endif
  16.  
  17. /* function prototypes */
  18.  
  19. int     _Cdecl      _copyfile (int source, int target, char far *buf,
  20.                         unsigned bsize);
  21. int     _Cdecl      _farread (int handle, void far *buf, unsigned bsize);
  22. int     _Cdecl      _farwrite (int handle, void far *buf, unsigned bsize);
  23. int     _Cdecl      fcopy (char *sourcename, char *targetname);
  24. char   *_Cdecl      strtrim (char *string);
  25. int     _Cdecl      truename (char *pathname, char *qualname);
  26.  
  27. #ifdef __cplusplus
  28. }
  29. #endif
  30.