]> git.proxmox.com Git - mirror_edk2.git/blame - StdLib/Include/stdarg.h
Add device abstraction code for the UEFI Console and UEFI Shell-based file systems.
[mirror_edk2.git] / StdLib / Include / stdarg.h
CommitLineData
2aa62f2b 1/** @file\r
2 The header <stdarg.h> declares a type and defines three macros, for advancing\r
3 through a list of arguments whose number and types are not known to the\r
4 called function when it is translated.\r
5\r
6 A function may be called with a variable number of arguments of varying types.\r
7 Its parameter list contains one or more parameters. The rightmost parameter\r
8 plays a special role in the access mechanism, and will be designated paramN\r
9 in this description.\r
10\r
11 The type va_list is a type suitable for holding information needed by the\r
12 macros va_start, va_arg, and va_end. If access to the varying arguments\r
13 is desired, the called function shall declare an object (referred to as ap\r
14 in these descriptions) having type va_list. The object ap may be passed as\r
15 an argument to another function; if that function invokes the va_arg macro\r
16 with parameter ap, the value of ap in the calling function is indeterminate\r
17 and shall be passed to the va_end macro prior to any further reference to ap.\r
18\r
19 The va_start and va_arg macros shall be implemented as macros, not as actual\r
20 functions. It is unspecified, by the C library standards, whether va_end\r
21 is a macro or an identifier declared with external linkage. If a macro\r
22 definition is suppressed in order to access an actual function, or a\r
23 program defines an external identifier with the name va_end, the behavior\r
24 is undefined. The va_start and va_end macros shall be invoked in the\r
25 function accepting a varying number of arguments, if access to the varying\r
26 arguments is desired.\r
27\r
28Copyright (c) 2010, Intel Corporation. All rights reserved.<BR>\r
29This program and the accompanying materials are licensed and made available under\r
30the terms and conditions of the BSD License that accompanies this distribution.\r
31The full text of the license may be found at\r
32http://opensource.org/licenses/bsd-license.php.\r
33\r
34THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
35WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
36\r
37**/\r
38#ifndef _STDARG_H\r
39#define _STDARG_H\r
40#include <sys/EfiCdefs.h>\r
41\r
42/** The type va_list is a type suitable for holding information needed by the\r
43 macros va_start, va_arg, and va_end.\r
44\r
45 This implementation aliases va_list to VA_LIST, declared in MdePkg/Base.h.\r
46**/\r
47#define va_list VA_LIST\r
48\r
49/** The va_start macro shall be invoked before any access to the unnamed arguments.\r
50 The va_start macro initializes ap for subsequent use by va_arg and va_end.\r
51\r
52 Synopsys: void va_start(va_list ap, paramN);\r
53\r
54 @param ap An object of type va_list that is to be initialized such\r
55 that subsequent successive invocations of va_arg will\r
56 return the values of the parameters following paramN.\r
57\r
58 @param paramN The parameter paramN is the identifier of the rightmost\r
59 parameter in the variable parameter list in the function\r
60 definition (the one just before the ,...). If the\r
61 parameter parmN is declared with the register storage\r
62 class, with a function of array type, or with a type that\r
63 is not compatible with the type that results after\r
64 application of the default argument promotions, the\r
65 behavior is undefined.\r
66\r
67 This implementation aliases va_start to VA_START, declared in MdePkg/Base.h.\r
68**/\r
69//#define va_start(ap, ParamN) VA_START(ap, ParamN)\r
70#define va_start VA_START\r
71\r
72/** The va_arg macro expands to an expression that has the type and value of\r
73 the next argument in the call. The parameter ap shall be the same as the\r
74 va_list ap initialized by va_start. Each invocation of va_arg modifies ap\r
75 so that the values of successive arguments are returned in turn. The\r
76 parameter type is a type name specified such that the type of a pointer to\r
77 an object that has the specified type can be obtained simply by postfixing\r
78 a * to type. If there is no actual next argument, or if type is not\r
79 compatible with the type of the actual next argument (as promoted\r
80 according to the default argument promotions), the behavior is undefined.\r
81\r
82 Synopsys: type va_arg(va_list ap, type);\r
83\r
84 @param ap An object of type va_list that was initialized by a prior\r
85 invocation of va_start.\r
86\r
87 @param type A type name specifying the type of the parameter to be retrieved.\r
88\r
89 @return The first invocation of the va_arg macro after that of the\r
90 va_start macro returns the value of the argument after that\r
91 specified by paramN. Successive invocations return the values\r
92 of the remaining arguments in succession.\r
93\r
94 This implementation aliases va_arg to VA_ARG, declared in MdePkg/Base.h.\r
95**/\r
96//#define va_arg(ap, type) VA_ARG(ap, type)\r
97#define va_arg VA_ARG\r
98\r
99/** The va_end macro facillitates a normal return from the function whose\r
100 variable argument list was referred to by the expansion of va_start that\r
101 initialized the va_list ap.\r
102\r
103 Synopsys: void va_end(va_list ap);\r
104\r
105 The va_end macro may modify ap so that it is no longer usable (without an\r
106 intervening invocation of va_start). If there is no corresponding\r
107 invocation of the va_start macro, or if the va_end macro is not invoked\r
108 before the return, the behavior is undefined.\r
109\r
110 @param ap An object of type va_list, initialized by a prior\r
111 invocation of va_start, that will no longer be referenced.\r
112\r
113 This implementation aliases va_end to VA_END, declared in MdePkg/Base.h.\r
114**/\r
115//#define va_end(ap) VA_END(ap)\r
116#define va_end VA_END\r
117\r
118/** For BSD compatibility. **/\r
119#define va_copy(s,d) (s) = (d)\r
120\r
121#endif /* _STDARG_H */\r