]> pd.if.org Git - pdclib/blobdiff - functions/stdio/vfscanf.c
Intermediate debugging work on *scanf().
[pdclib] / functions / stdio / vfscanf.c
index 0667c990828f7757c124da7b5257faf42b4a47e9..f5b1f3f8864743c1b88944634af6c59ccbdfdde3 100644 (file)
@@ -25,6 +25,7 @@ int vfscanf( FILE * _PDCLIB_restrict stream, const char * _PDCLIB_restrict forma
     status.prec = 0;
     status.stream = stream;
     va_copy( status.arg, arg );
+    // FIXME: This whole shebang should operate on STREAM, not S...
     while ( *format != '\0' )
     {
         const char * rc;