Espacios de nombres
Variantes
Acciones

va_end

De cppreference.com
< cpp‎ | utility‎ | variadic
 
 
Biblioteca de servicios
 
 
Definido en el archivo de encabezado <cstdarg>
void va_end(va_list ap);
La macro va_end realiza la limpieza de un objeto ap inicializado por una llamada a va_start o va_copy. va_end puede modificar ap de modo que ya no es utilizable .
Original:
The va_end macro performs cleanup for an ap object initialized by a call to va_start or va_copy. va_end may modify ap so that it is no longer usable.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Si no hay ninguna llamada correspondiente a va_start o va_copy, o si va_end no se llama antes de una función que llama va_startva_copy o devoluciones, el comportamiento es indefinido .
Original:
If there is no corresponding call to va_start or va_copy, or if va_end is not called before a function that calls va_start or va_copy returns, the behavior is undefined.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[editar]Parámetros

ap -
una instancia del tipo de va_list a limpiar
Original:
an instance of the va_list type to clean up
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[editar]Ampliado valor

(Ninguno)
Original:
(none)
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[editar]Ver también

Permite el acceso a los argumentos de función variádica.
(macro de función)[editar]
(C++11)
Crea una copia de los argumentos de función variádica.
(macro de función)[editar]
Accede al siguiente argumento de función variádica.
(macro de función)[editar]
close