home *** CD-ROM | disk | FTP | other *** search
/ Media Share 9 / MEDIASHARE_09.ISO / cprog / ev_201.zip / FILEFCTS.H < prev    next >
C/C++ Source or Header  |  1993-07-03  |  2KB  |  62 lines

  1. #if !defined (FILEFCTS)           /* Prevents multiple declarations errors */
  2. #define FILEFCTS
  3.  
  4.  
  5. /*
  6.    Module        : FILEFCTS.H
  7.    Version       : 2.0
  8.    Revision date : July 3rd, 1993
  9.    Author(s)     : Remy Gendron
  10.  
  11.    Description   : Files related functions.
  12. */
  13.  
  14.  
  15. /* Headers --------------------------------------------------------------- */
  16.  
  17. #include <stdio.h>
  18.  
  19.  
  20. /* Macros ---------------------------------------------------------------- */
  21.  
  22. #include "stdmacro.h"                        /* Standard macro definitions */
  23.  
  24.  
  25. /* TypeDefs -------------------------------------------------------------- */
  26.  
  27. #include "stdtype.h"                          /* Standard type definitions */
  28.  
  29.  
  30. /* Prototypes ------------------------------------------------------------ */
  31.  
  32. #ifdef __cplusplus                     /* Enables linking with C++ modules */
  33. extern "C" {
  34. #endif
  35.  
  36. int far fnewline              /* Goes to start of next line in a text file */
  37. (
  38.    FILE *f                                         /* Ptr to opened stream */
  39. ) ;
  40.  
  41. dword far fsize                              /* Returns file size in bytes */
  42. (
  43.    FILE *f                                         /* Ptr to opened stream */
  44. ) ;
  45.  
  46. int far fcopy                                        /* Copies a disk file */
  47. (
  48.    char huge *srcpath,                     /* Complete path to source file */
  49.    char huge *destpath,               /* Complete path to destination file */
  50.    bool      verify                  /* TRUE: Verify ON  FALSE: Verify OFF */
  51. ) ;
  52.  
  53.  
  54. #ifdef __cplusplus
  55. }
  56. #endif
  57.  
  58.  
  59. /* End Header File ------------------------------------------------------- */
  60.  
  61. #endif
  62.