Home  /  Autodocs  /  dos.library

NAME

PutErrStr
Writes a string to the error output (buffered) (V47)

SYNOPSIS

error = PutErrStr(str)
D0 D1

LONG PutErrStr(STRPTR)

FUNCTION

This function writes an unformatted string to the error output. No newline (line feed, ASCII code 10) is appended to the string and any error is returned. This operation is buffered. In case the error output is not set, the string is printed to the default output.

INPUTS

str
Null-terminated string to be written to error output

RESULT

error
0 for success, -1 for any error. NOTE: this is the opposite most AmigaDOS function returns! Call IoErr() to find out why PutErrStr() has failed.

SEE ALSO

PutStr(), FPuts(), FPutC(), FWrite(), WriteChars(), IoErr()