FUNCTION c_getsizes(file_names, nfiles, file_sizes)
char file_names[][CMLEN]; long nfiles; double file_sizes[];
Host file name specification for each file to determine the size of.
Number of files to determine the size of.
The number of bytes in each specified input file.
Open the specified input file with read permission. Seek to the end of the file, and determine its size. Close the file.
c_getsizes() has no return value.