]> pd.if.org Git - pdclib/blobdiff - functions/stdlib/wcstombs.c
Removed old files.
[pdclib] / functions / stdlib / wcstombs.c
diff --git a/functions/stdlib/wcstombs.c b/functions/stdlib/wcstombs.c
deleted file mode 100644 (file)
index dc964f7..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-/* ----------------------------------------------------------------------------
- * $Id$
- * ----------------------------------------------------------------------------
- * Public Domain C Library - http://pdclib.sourceforge.net
- * This code is Public Domain. Use, modify, and redistribute at will.
- * --------------------------------------------------------------------------*/
-
-size_t wcstombs( char * restrict s, const wchar_t * restrict wcs, size_t n ) { /* TODO */ };
-
-/* PDPC code - unreviewed
-{
-    strncpy(s, (const char *)pwcs, n);
-    if (strlen((const char *)pwcs) >= n)
-    {
-        return (n);
-    }
-    return (strlen(s));
-}
-*/