0649802fe44f247b1975d60a3bbbee5a52a056e7
[lunaix-os.git] / lunaix-os / libs / libc / string / strcpy.c
1 #include <libc/string.h>
2
3 char*
4 strcpy(char* dest, const char* src) {
5     char c;
6     unsigned int i = 0;
7     while ((c = src[i]))
8     {
9         dest[i] = c;
10         i++;
11     }
12     dest[i] = '\0';
13     return dest;
14 }