#include <stdio_c.h>
int vsscanf_c(const char *s, __code const char *format, va_list arg);
vsscanf_c reads input from the string s under control of the string pointed to by format that specifies the admissible input sequences and how they are to be converted for assignment, using subsequent arguments as pointers to the objects to receive the converted input. The format string is stored in flash (code) memory. Before calling vsscanf_c, arg must be initialized by the va_start macro (and possibly subsequent va_arg calls). vsscanf_c does not invoke the va_end macro.
If there are insufficient arguments for the format, the behavior is undefined.
vsscanf_c returns the value of the macro EOF if an input failure occurs before any conversion. Otherwise, vsscanf_c returns the number of input items assigned, which can be fewer than provided for, or even zero, in the event of an early matching failure.
vsscanf_c is equivalent to sscanf_c with the variable argument list replaced by arg.
vsscanf_c is an extension provided by CrossWorks C.