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_end.html | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 devdocs/c/variadic%2Fva_end.html (limited to 'devdocs/c/variadic%2Fva_end.html') diff --git a/devdocs/c/variadic%2Fva_end.html b/devdocs/c/variadic%2Fva_end.html new file mode 100644 index 00000000..d6c1cddf --- /dev/null +++ b/devdocs/c/variadic%2Fva_end.html @@ -0,0 +1,25 @@ +

va_end

Defined in header <stdarg.h>
void va_end( va_list ap );
+

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.

+

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.

+

Parameters

+ +
ap - an instance of the va_list type to clean up

Expanded value

(none)

+

References

See also

+ + + + +
accesses the next variadic function argument
(function macro)
+
(C99)
makes a copy of the variadic function arguments
(function macro)
holds the information needed by va_start, va_arg, va_end, and va_copy
(typedef)
enables access to variadic function arguments
(function macro)
C++ documentation for va_end
+

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

+
-- cgit v1.2.3