:pserver:cvsanon@mok.lvcm.com:/CVS/ReactOS reactos
[reactos.git] / lib / ntdll / string / strcat.c
1 /* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
2 #include <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 }