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