Added simple WCSA
[SXSI/TextCollection.git] / swcsa / utils / fileInfo.h
1 #ifndef FILE_INFO_INCLUDED
2 #define FILE_INFO_INCLUDED
3
4 #include <stdio.h>
5 #include <stdlib.h>
6  #include <unistd.h>
7
8
9
10         /*------------------------------------------------------------------
11          Obtains the size of a file.
12         ------------------------------------------------------------------ */
13         unsigned long fileSize (char *filename);
14         
15         /* copies from infile to outfile */
16         void copyFile (char *infile, char *outfile);
17
18 #endif
19