vwscanf, vfwscanf, vswscanf
De cppreference.com
|
|
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
<metanoindex/>
<tbody> </tbody>| Definido no cabeçalho <wchar.h>
|
||
int vwscanf( const wchar_t* format, va_list vlist ); |
(1) | |
int vfwscanf( FILE *stream, const wchar_t* format, va_list vlist ); |
(2) | |
int vswscanf( const wchar_t* buffer, const wchar_t* format, va_list vlist ); |
(3) | |
Lê os dados do uma variedade de fontes, interpreta-o de acordo com
format e armazena os resultados em locais definidos pela vlist.Original:
Reads data from the a variety of sources, interprets it according to
format and stores the results into locations defined by vlist.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
1)
Lê os dados a partir de stdin.
Original:
Reads the data from stdin.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
2)
Lê os dados do fluxo de arquivo
stream.Original:
Reads the data from file stream
stream.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
3)
Lê os dados terminada em nulo
buffer corda larga.Original:
Reads the data from null-terminated wide string
buffer.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Parâmetros
| stream | - | fluxo de arquivo de entrada para ler
Original: input file stream to read from The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | ||||
| buffer | - | ponteiro para uma string terminada em null gama de ler
Original: pointer to a null-terminated wide string to read from The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | ||||
| format | - | ponteiro para uma string terminada em null ampla especificando como ler a entrada.
Original: pointer to a null-terminated wide string specifying how to read the input.
The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | ||||
| vlist | - | lista de argumentos variável que contém os argumentos que recebem
Original: variable argument list containing the receiving arguments The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
Valor de retorno
Número de argumentos ler com êxito, ou se a falha ocorre EOF.
Original:
Number of arguments successfully read, or EOF if failure occurs.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Exemplo
| Esta seção está incompleta Motivo: sem exemplo |
Veja também
lê a entrada de caracteres formatada variedade de stdin, um fluxo de arquivo ou um tampão Original: reads formatted wide character input from stdin, a file stream or a buffer The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (função) | |
C++ documentation for vwscanf, vfwscanf, vswscanf
| |