putch (2) --- put a character on a file 03/23/80 _C_a_l_l_i_n_g _I_n_f_o_r_m_a_t_i_o_n integer function putch (c, fd) character c file_des fd Library: vswtlb (standard Subsystem library) _F_u_n_c_t_i_o_n 'Putch' places the character 'c' on the file specified by file descriptor 'fd'. If the attempt succeeds, 'putch' returns OK; otherwise, it returns ERR. _I_m_p_l_e_m_e_n_t_a_t_i_o_n 'Putch' creates an internal buffer of two characters, the first being the argument 'c' and the second being an EOS. This buffer is written on the specified file by a call to 'putlin'. _C_a_l_l_s putlin _S_e_e _A_l_s_o putlin (2), getch (2) putch (2) - 1 - putch (2)