low_str_strcpy

Copy a string. 
l_text	low_str_strcpy ( 
		l_text 	s1, 
		cl_text	s2 
);
Return Value
Returns the destination string. No return value is reserved to indicate an error.
Parameters
s1
Destination string
s2
Null-terminated source string
Remarks
The low_str_strcpy function copies @s2, including the terminating null character, 
to the location specified by @s1. No overflow checking is performed when strings are copied or appended. 
The behavior of low_str_strcpy is undefined if the source and destination strings overlap.