1VFWSCANF(P) POSIX Programmer's Manual VFWSCANF(P)
2
3
4
6 vfwscanf, vswscanf, vwscanf - wide-character formatted input of a
7 stdarg argument list
8
10 #include <stdarg.h>
11 #include <stdio.h>
12 #include <wchar.h>
13
14 int vfwscanf(FILE *restrict stream, const wchar_t *restrict format,
15 va_list arg);
16 int vswscanf(const wchar_t *restrict ws, const wchar_t *restrict for‐
17 mat,
18 va_list arg);
19 int vwscanf(const wchar_t *restrict format, va_list arg);
20
21
23 The vfwscanf(), vswscanf(), and vwscanf() functions shall be equivalent
24 to the fwscanf(), swscanf(), and wscanf() functions, respectively,
25 except that instead of being called with a variable number of argu‐
26 ments, they are called with an argument list as defined in the
27 <stdarg.h> header. These functions shall not invoke the va_end macro.
28 As these functions invoke the va_arg macro, the value of ap after the
29 return is unspecified.
30
32 Refer to fwscanf() .
33
35 Refer to fwscanf() .
36
37 The following sections are informative.
38
40 None.
41
43 Applications using these functions should call va_end( ap) afterwards
44 to clean up.
45
47 None.
48
50 None.
51
53 fwscanf() , the Base Definitions volume of IEEE Std 1003.1-2001,
54 <stdarg.h>, <stdio.h>, <wchar.h>
55
57 Portions of this text are reprinted and reproduced in electronic form
58 from IEEE Std 1003.1, 2003 Edition, Standard for Information Technology
59 -- Portable Operating System Interface (POSIX), The Open Group Base
60 Specifications Issue 6, Copyright (C) 2001-2003 by the Institute of
61 Electrical and Electronics Engineers, Inc and The Open Group. In the
62 event of any discrepancy between this version and the original IEEE and
63 The Open Group Standard, the original IEEE and The Open Group Standard
64 is the referee document. The original Standard can be obtained online
65 at http://www.opengroup.org/unix/online.html .
66
67
68
69IEEE/The Open Group 2003 VFWSCANF(P)