From 754bbf7a25a8dda49b5d08ef0d0443bbf5af0e36 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Sun, 7 Apr 2024 13:41:34 -0500 Subject: new repository --- devdocs/c/variadic%2Fva_list.html | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 devdocs/c/variadic%2Fva_list.html (limited to 'devdocs/c/variadic%2Fva_list.html') diff --git a/devdocs/c/variadic%2Fva_list.html b/devdocs/c/variadic%2Fva_list.html new file mode 100644 index 00000000..507162c4 --- /dev/null +++ b/devdocs/c/variadic%2Fva_list.html @@ -0,0 +1,23 @@ +

va_list

Defined in header <stdarg.h>
/* 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.

+

References

See also

+ + + + +
accesses the next variadic function argument
(function macro)
+
(C99)
makes a copy of the variadic function arguments
(function macro)
ends traversal of the variadic function arguments
(function macro)
enables access to variadic function arguments
(function macro)
C++ documentation for va_list
+

+ © cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
+ https://en.cppreference.com/w/c/variadic/va_list +

+
-- cgit v1.2.3