Category Creo Parametric TOOLKIT fundamentals, Object ProString

Function ProTKFscanf


Description
Provides a UNICODE-supported equivalent to the C run time function fscanf(). This function supports all format specifiers and modifiers as are supported by the C-language specification. The output data which are of string or character format will be in the UNICODE encoding.
Synopsis
#include <ProTKRunTime.h>
intProTKFscanf(
FILE* file
/* (In)
The file from which to read data.
*/
const char* format
/* (In)
The format string used for parsing.
*/
...
/* (Out)
The parsed contents of the input from the file.
*/
)
Returns
ValueThe number of characters parsed by the function.

Manual References:

  1. Unicode Encoding: Special External Interface: printf() and scanf() Functions
  2. Unicode Encoding: Special External Interface: printf() and scanf() Functions