1 void strcpy(char *src, char *dst) {
2 int i = 0;
3 while (src[i] != "\0") {
4 dst[i] = src[i];
5 i = i + 1;
6 }
7 }