Espacios de nombres
Variantes
Acciones

std::vwprintf, std::vfwprintf, std::vswprintf

De cppreference.com
< cpp‎ | io‎ | c
 
 
Biblioteca de E/S
Manipuladores de E/S
E/S estilo C
Búferes
(en desuso en C++98)
Flujos
Abstracciones
E/S de archivos
E/S de cadenas
E/S de arrays
(en desuso en C++98)
(en desuso en C++98)
(en desuso en C++98)
Salida sincronizada
Tipos
Interfaz de categoría de error
(C++11)
 
E/S estilo C
Funciones
Acceso a archivos
E/S directa
E/S sin formato
E/S con formato
(C++11)(C++11)(C++11)
vwprintfvfwprintfvswprintf
Posicionamiento de archivos
Control de errores
Operaciones sobre archivos
 
Definido en el archivo de encabezado <cwchar>
int vwprintf( const wchar_t* format, va_list vlist );
(1)
int vfwprintf( FILE* stream, const wchar_t* format, va_list vlist );
(2)
int vswprintf( const wchar_t* buffer, const wchar_t* format, va_list vlist );
(3)
Carga los datos de ubicaciones, definidos por vlist,, los convierte a equivalentes de cadena ancha y escribe los resultados a una variedad de fregaderos .
Original:
Loads the data from locations, defined by vlist,, converts them to wide string equivalents and writes the results to a variety of sinks.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
1)
Escribe los resultados stdout .
Original:
Writes the results to stdout.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
2)
Escribe los resultados en un archivo .. stream corriente
Original:
Writes the results to a 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.
3)
Escribe los resultados en un buffer cadena ancha .
Original:
Writes the results to a 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.

Contenido

[editar] Parámetros

[editar] Valor de retorno

Número de caracteres anchos escritos si el valor del éxito o negativo si ocurre un error .
Original:
Number of wide characters written if successful or negative value if an error occurred.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[editar] Ejemplo

[editar] Ver también

imprime la salida formateada carácter ancho a stdout, una secuencia de archivo o un tampón
Original:
prints formatted wide character output to stdout, 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.

(función) [editar]
Documentación de C para vwprintf, vfwprintf, vswprintf