]> pd.if.org Git - pdclib/blobdiff - functions/stdio/sscanf.c
Removed old files.
[pdclib] / functions / stdio / sscanf.c
diff --git a/functions/stdio/sscanf.c b/functions/stdio/sscanf.c
deleted file mode 100644 (file)
index 9103aab..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-/* ----------------------------------------------------------------------------
- * $Id$
- * ----------------------------------------------------------------------------
- * Public Domain C Library - http://pdclib.sourceforge.net
- * This code is Public Domain. Use, modify, and redistribute at will.
- * --------------------------------------------------------------------------*/
-
-int sscanf( const char * restrict s, const char * restrict format, ... ) { /* TODO */ };
-
-/* PDPC code - unreviewed
-{
-    va_list arg;
-    int ret;
-
-    va_start(arg, format);
-    ret = vvscanf(format, arg, NULL, s);
-    va_end(arg);
-    return (ret);
-}
-*/