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