]> pd.if.org Git - pdclib/blobdiff - functions/stdlib/mbstowcs.c
Removed old files.
[pdclib] / functions / stdlib / mbstowcs.c
diff --git a/functions/stdlib/mbstowcs.c b/functions/stdlib/mbstowcs.c
deleted file mode 100644 (file)
index a7cd2a0..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 mbstowcs( wchar_t * restrict wcs, const char * restrict s, size_t n ) { /* TODO */ };
-
-/* PDPC code - unreviewed
-{
-    strncpy((char *)pwcs, s, n);
-    if (strlen(s) >= n)
-    {
-        return (n);
-    }
-    return (strlen((char *)pwcs));
-}
-*/