va_end
De cppreference.com
![]() | Esta página se ha traducido por ordenador/computador/computadora de la versión en inglés de la Wiki usando Google Translate. La traducción puede contener errores y palabras aparatosas/incorrectas. Planea sobre el texto para ver la versión original. Puedes ayudar a corregir los errores y mejorar la traducción. Para instrucciones haz clic aquí. |
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.
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.
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.
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) | |
(C++11) | Crea una copia de los argumentos de función variádica. (macro de función) |
Accede al siguiente argumento de función variádica. (macro de función) |