]> pd.if.org Git - pdclib/blobdiff - functions/string/strncat.c
Added template implementation files.
[pdclib] / functions / string / strncat.c
diff --git a/functions/string/strncat.c b/functions/string/strncat.c
new file mode 100644 (file)
index 0000000..624ac03
--- /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 * strncat( char * restrict s1, const char * restrict s2, size_t n ) { /* TODO */ };