addset (2) --- put character in a set if it fits 05/29/82 _C_a_l_l_i_n_g _I_n_f_o_r_m_a_t_i_o_n integer function addset (c, set, j, maxsiz) character c, set (maxsiz) integer j, maxsiz Library: vswtlb (standard Subsystem library) _F_u_n_c_t_i_o_n 'Addset' puts the character 'c' in the array 'set' at posi- tion 'j' and increments 'j', provided that 'j' is not greater than 'maxsiz'. The function return is YES if 'c' was inserted, NO otherwise. _I_m_p_l_e_m_e_n_t_a_t_i_o_n Trivial. _A_r_g_u_m_e_n_t_s _M_o_d_i_f_i_e_d set, j addset (2) - 1 - addset (2)