:pserver:cvsanon@mok.lvcm.com:/CVS/ReactOS reactos
[reactos.git] / lib / ntdll / string / strcpy.c
1 /* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
2 char* strcpy(char *to, const char *from);
3
4 char* strcpy(char *to, const char *from)
5 {
6   char *save = to;
7
8   for (; (*to = *from); ++from, ++to);
9   return save;
10 }