low_str_strdup

Duplicate strings. 
l_text 	low_str_strdup ( 
	cl_text	src 
);

Return Value
Returns a pointer to the storage location for the copied string or NULL 
if storage cannot be allocated.
Parameter
src
Null-terminated source string
Remarks
The low_str_strdup function calls low_mem_malloc to allocate storage space 
for a copy of @src and then copies @src to the allocated space.
Because low_str_strdup calls low_mem_malloc to allocate storage space for 
the copy of @src, it is good practice always to release this memory by 
calling the low_mem_free routine on the pointer returned by the call to low_str_strdup.