Home  /  Autodocs  /  dos.library

NAME

PutStr
Writes a string to the default output (buffered) (V36)

SYNOPSIS

error = PutStr(str)
D0 D1

LONG PutStr(STRPTR)

FUNCTION

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

INPUTS

str
Null-terminated string to be written to default 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 PutStr() has failed.

SEE ALSO

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