mapup (2) --- fold character to upper case 03/23/80 _C_a_l_l_i_n_g _I_n_f_o_r_m_a_t_i_o_n character function mapup (c) character c Library: vswtlb (standard Subsystem library) _F_u_n_c_t_i_o_n 'Mapup' is the inverse of 'mapdn'. If the character 'c' is a lower case letter, the function return is the correspond- ing upper case letter; otherwise, the function return is the same as 'c'. _I_m_p_l_e_m_e_n_t_a_t_i_o_n In 'mapup', as in 'mapdn', considerable use is made of the internal ASCII character code. If 'c' is between 'a'c and 'z'c, 'c' - 'a'c + 'A'c is returned; otherwise, 'c' is returned. _B_u_g_s Inordinate dependence on properties of character code. _S_e_e _A_l_s_o mapdn (2), mapstr (2) mapup (2) - 1 - mapup (2)