GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
std::va_list(3) C++ Standard Libary std::va_list(3)

std::va_list - std::va_list


Defined in header <cstdarg>
typedef /* unspecified */ va_list;


va_list is a complete object type suitable for holding the information needed by the
macros va_start, va_copy, va_arg, and va_end.


If a va_list instance is created, passed to another function, and used via va_arg in
that function, then any subsequent use in the calling function should be preceded by
a call to va_end.


It is legal to pass a pointer to a va_list object to another function and then use
that object after the function returns.


va_start enables access to variadic function arguments
(function macro)
va_copy makes a copy of the variadic function arguments
(C++11) (function macro)
va_arg accesses the next variadic function argument
(function macro)
va_end ends traversal of the variadic function arguments
(function macro)

2022.07.31 http://cppreference.com

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.