update for HEAD-2003091401
[reactos.git] / lib / string / tcscat.h
diff --git a/lib/string/tcscat.h b/lib/string/tcscat.h
new file mode 100644 (file)
index 0000000..72a17f7
--- /dev/null
@@ -0,0 +1,17 @@
+/* $Id$
+ */
+
+#include <tchar.h>
+
+_TCHAR * _tcscat(_TCHAR * s, const _TCHAR * append)
+{
+ _TCHAR * save = s;
+
+ for(; *s; ++s);
+
+ while((*s++ = *append++));
+
+ return save;
+}
+
+/* EOF */