format and print a string to a file (buffered)
Source position: amigados.pas line 1871
function VFPrintf( |
fh: LongInt; |
format: PChar; |
argarray: PLongInt |
):LongInt; |
fh |
|
Filehandle to write to |
format |
|
RawDoFmt() style formatting string |
argarray |
|
Pointer to array of formatting values |
Number of bytes written or -1 (EOF) for an error
Writes the formatted string and values to the given file. This routine is assumed to handle all internal buffering so that the formatting string and resultant formatted values can be arbitrarily long. Any secondary error code is returned in IoErr(). This routine is buffered.
|
Format and print string (buffered) |
|
|
Write a BCPL formatted string to a file (buffered) |
|
|
Format data into a character stream. |
|
|
Write a character to the specified output |