update for HEAD-2003021201
[reactos.git] / lib / msvcrt / string / strcpy.c
1 /* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
2 #include <msvcrt/string.h>
3
4 #pragma function(strcpy)
5
6 char* strcpy(char *to, const char *from)
7 {
8   char *save = to;
9
10   for (; (*to = *from); ++from, ++to);
11   return save;
12 }