NAME putstr - write str onto file fd in field width >=w SYNOPSIS call putstr(str, w, fd) character str(ARB) integer w, fd DESCRIPTION Putstr writes the character string 'str' onto the file specified by 'fd', in a field at least 'w' characters long. If fewer than 'w' characters are needed, blanks are inserted to the left to make up the count; if more than 'w' are needed, more are provided. If 'w' is negative, the characters are left-justified in the field. 'Fd' is a a file descriptor as returned by open or create. SEE ALSO putch, putlin, remark, error DIAGNOSTICS None