ssttrrccaatt() -- String Function (libc)

Concatenate two strings
#iinncclluuddee <ssttrriinngg.hh>
cchhaarr *ssttrrccaatt(_s_t_r_i_n_g_1, _s_t_r_i_n_g_2)
cchhaarr *_s_t_r_i_n_g_1, *_s_t_r_i_n_g_2;

ssttrrccaatt()  appends all  characters in  _s_t_r_i_n_g_2 onto the  end of  _s_t_r_i_n_g_1. It
returns the modified _s_t_r_i_n_g_1.

_E_x_a_m_p_l_e
For an example of this function, see the entry for ssttrriinngg.hh.

_S_e_e _A_l_s_o
lliibbcc, ssttrriinngg.hh, ssttrrnnccaatt()
ANSI Standard, section 7.11.3.2
POSIX Standard, section 8.1

_N_o_t_e_s
_s_t_r_i_n_g_1 must  point to enough space to hold  itself and _s_t_r_i_n_g_2; otherwise,
another portion of the program may be overwritten.
