#include <nitro/std.h>
int STD_TVSScanf( const char *src, const char *fmt, va_list vlist );
src |
Input string. |
fmt |
Input formatted string. |
vlist |
Variable argument list. |
Returns the number of times form conversion was successful and was actually substituted.
If the end of src is reached without making even one successful form conversion, it returns –1.
This function returns the simplified version of the format string.
The following functions have the same operation as vsscanf
:
Integer conversion (d, i, o, u, x, X, p)
Character or String (c, s)
Scanning array aquisition (n)
Character class ([])
11/16/2006 Added character class to the supported formats. 10/25/2006 Initial version.
CONFIDENTIAL