![]() |
vsscanf | Function (Macro) |
stdio.h |
short vsscanf (const char *buffer, const char *format, va_list arglist); |
String parsing function using argument list.
The vsscanf function is known as an alternate entry point for the sscanf function. It behaves exactly like sscanf, but it accepts a pointer to a list of arguments instead of an argument list (see stdarg.h header file for more info about argument lists). See sscanf for details on format specifiers.