The task is to reproduce the behavior of the function strcpy in C. I found this code:
char *ft_strcpy(char *s1, char *s2) { int i; i = 0; while (s2[i]) {