Header: stdio.h
Syntax:
extern int vsscanf
(
const char *s,
const char *format,
va_list arg
);
Purpose: This function is equivilant to fscanf except that s specifies a string from which the input is to be obtained, rather than a stream. The variable argument list arg, which has been initialised by the va_start macro (and possibly subsequent va_arg calls). The vsscanf function does not invoke the va_end function.
|
|
|