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