ft_strcpy - kibotrel/42-Libft GitHub Wiki
char *ft_strcpy(char *dst, const char *src)
Description :
Copies the string src
into the string dst
.
Return Value :
Returns the string dst
where src
was copied followed by a \0
.
char *ft_strcpy(char *dst, const char *src)
Description :
Copies the string src
into the string dst
.
Return Value :
Returns the string dst
where src
was copied followed by a \0
.