Added binary and unicode file i/o support to msvcrt.
[reactos.git] / reactos / lib / msvcrt / 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 }