]> pd.if.org Git - pdclib/blobdiff - functions/string/strcat.c
Added template implementation files.
[pdclib] / functions / string / strcat.c
diff --git a/functions/string/strcat.c b/functions/string/strcat.c
new file mode 100644 (file)
index 0000000..cb0c0a1
--- /dev/null
@@ -0,0 +1,8 @@
+// ----------------------------------------------------------------------------
+// $Id$
+// ----------------------------------------------------------------------------
+// Public Domain C Library - http://pdclib.sourceforge.net
+// This code is Public Domain. Use, modify, and redistribute at will.
+// ----------------------------------------------------------------------------
+
+char * strcat( char * restrict s1, const char * restrict s2 ) { /* TODO */ };