c_getsizes - Given a list of file names, return the size of each file

SYNTAX

FUNCTION c_getsizes(file_names, nfiles, file_sizes)

    char	 file_names[][CMLEN];
    long	 nfiles;
    double	 file_sizes[];

PARAMETERS

file_names (char[][CMLEN], input)

Host file name specification for each file to determine the size of.

nfiles (long, input)

Number of files to determine the size of.

file_sizes (double[], output)

The number of bytes in each specified input file.

DESCRIPTION

Open the specified input file with read permission. Seek to the end of the file, and determine its size. Close the file.

RETURN VALUE

c_getsizes() has no return value.