close
Espacios de nombres
Variantes

vwprintf, vfwprintf, vswprintf

De cppreference.com
< c | io
 
 
File input/output
Funciones
Original:
Functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Acceso a archivos
Original:
File access
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Directo de entrada / salida
Original:
Direct input/output
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Entrada sin formato / salida
Original:
Unformatted input/output
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Formato de entrada / salida
Original:
Formatted input/output
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Presentar posicionamiento
Original:
File positioning
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Gestión de errores
Original:
Error handling
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Las operaciones en los archivos
Original:
Operations on files
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
 
<tbody> </tbody>
Definido en el archivo de encabezado <wchar.h>
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.

Parámetros

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.

Ejemplo

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