ssttrrccppyy() -- String Function (libc)

Copy one string into another
#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cppyy(_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cppyy() copies the contents of _s_t_r_i_n_g_2,  up to the NUL, into the memory to
which _s_t_r_i_n_g_1 points.  It returns _s_t_r_i_n_g_1.

_E_x_a_m_p_l_e
See ssttrriinngg.

_S_e_e _A_l_s_o
lliibbcc, mmeemmccppyy(), ssttrriinngg.hh, ssttrrnnccppyy()
ANSI Standard, section 7.11.2.3
POSIX Standard, section 8.1

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