STLdoc
STLdocumentation
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
stdarg.h
Go to the documentation of this file.
1 //
2 // stdarg.h
3 //
4 // Copyright (c) Microsoft Corporation. All rights reserved.
5 //
6 // The C Standard Library <stdarg.h> header.
7 //
8 #pragma once
9 #define _INC_STDARG
10 
11 #include <vcruntime.h>
12 
14 
15 
16 
17 #define va_start __crt_va_start
18 #define va_arg __crt_va_arg
19 #define va_end __crt_va_end
20 #define va_copy(destination, source) ((destination) = (source))
21 
22 
23 
#define _CRT_BEGIN_C_HEADER
Definition: vcruntime.h:73
#define _CRT_END_C_HEADER
Definition: vcruntime.h:76