putlit (2) --- write literal string on a file 02/24/82 _C_a_l_l_i_n_g _I_n_f_o_r_m_a_t_i_o_n subroutine putlit (message, delimiter, fd) packed_char message (ARB) character delimiter file_des fd Library: vswtlb (standard Subsystem library) _F_u_n_c_t_i_o_n 'Putlit' provides a way to place a literal string on a file. Its first argument is a packed character string, terminated by a character specified in the second argument. The third argument is the file descriptor of the file to be used. 'Putlit' is maintained for compatibility with earlier ver- sions of the Subsystem. In the future, 'Putlin' should be used to write literal strings. _I_m_p_l_e_m_e_n_t_a_t_i_o_n 'Putlit' calls 'ptoc' to unpack its first argument, then calls 'putlin' to print the unpacked string on the specified file. _C_a_l_l_s ptoc, putlin _B_u_g_s Returns no status to indicate whether or not the write was successful. _S_e_e _A_l_s_o ptoc (2), putlin (2), print (2), encode (2) putlit (2) - 1 - putlit (2)