Home  /  Autodocs  /  dos.library

NAME

FPutC
Write a character to the specified output (buffered) (V36)

SYNOPSIS

char = FPutC(fh, char)
D0 D1 D2

LONG FPutC(BPTR, LONG)

FUNCTION

Writes a single character to the output stream. This operation is buffered. Use Flush() between buffered and unbuffered I/O on a FileHandle. Interactive filehandles are flushed automatically on a newline (line feed, ASCII code 10), return (carriage return, ASCII code 13) or '\0' (NUL).

INPUTS

fh
FileHandle to use for buffered I/O

char
character to write

RESULT

char
Either the character written, or -1 for an error. Call IoErr() to find out why FPutC() failed.

BUGS

Older documentation indicated that you should pass a UBYTE. The correct usage is to pass a LONG in the range 0-255.

SEE ALSO

FGetC(), UnGetC(), Flush(), IoErr()