Help for ADDTOFILE

PURPOSE:

ADDTOFILE appends a string to a specified file.

EXECUTION:
 This utility can be called from a VICAR procedure using the syntax:

 ADDTOFILE filename string

 where filename is an existing ASCII file produced by CREATEFILE or any other
 means.
 
REVISION HISTORY:
   06-1-89  HBM   Initial release.
   11-5-96  SP    Converted from DCL to C for portability.
   01-3-97  SP    Since the C version crashed on VMS, renamed the C version
                  addtofil, and wrote a procedure to call DCL on VMS and to
                  call addtofil on UNIX.

PARAMETERS:


INPUT

Input file name

STRING1

string to append.

Cognizant Programmer: