:pserver:cvsanon@mok.lvcm.com:/CVS/ReactOS reactos
[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
5 char* strcpy(char *to, const char *from)
6 {
7   char *save = to;
8
9   for (; (*to = *from); ++from, ++to);
10   return save;
11 }