Clib.vfscanf()
syntax: |
Clib.vfscanf(filePointer, formatString[, valist]) |
where: |
filePointer - pointer to file to use.
formatString - string that specifies the final format.
valist - a variable list of variables to hold data input according to formatString.
|
return: |
number - input fields successfully scanned, converted, and stored, else EOF.
|
description: |
This method is similar to Clib.fscanf() except that it takes a variable argument list. See Clib.fscanf() for more details.
|
see: |
|