1afe61c15SRodney W. Grimes.\" Copyright (c) 1990, 1991, 1993 2afe61c15SRodney W. Grimes.\" The Regents of the University of California. All rights reserved. 3afe61c15SRodney W. Grimes.\" 4afe61c15SRodney W. Grimes.\" This code is derived from software contributed to Berkeley by 5afe61c15SRodney W. Grimes.\" the American National Standards Committee X3, on Information 6afe61c15SRodney W. Grimes.\" Processing Systems. 7afe61c15SRodney W. Grimes.\" 8afe61c15SRodney W. Grimes.\" Redistribution and use in source and binary forms, with or without 9afe61c15SRodney W. Grimes.\" modification, are permitted provided that the following conditions 10afe61c15SRodney W. Grimes.\" are met: 11afe61c15SRodney W. Grimes.\" 1. Redistributions of source code must retain the above copyright 12afe61c15SRodney W. Grimes.\" notice, this list of conditions and the following disclaimer. 13afe61c15SRodney W. Grimes.\" 2. Redistributions in binary form must reproduce the above copyright 14afe61c15SRodney W. Grimes.\" notice, this list of conditions and the following disclaimer in the 15afe61c15SRodney W. Grimes.\" documentation and/or other materials provided with the distribution. 16afe61c15SRodney W. Grimes.\" 3. All advertising materials mentioning features or use of this software 17afe61c15SRodney W. Grimes.\" must display the following acknowledgement: 18afe61c15SRodney W. Grimes.\" This product includes software developed by the University of 19afe61c15SRodney W. Grimes.\" California, Berkeley and its contributors. 20afe61c15SRodney W. Grimes.\" 4. Neither the name of the University nor the names of its contributors 21afe61c15SRodney W. Grimes.\" may be used to endorse or promote products derived from this software 22afe61c15SRodney W. Grimes.\" without specific prior written permission. 23afe61c15SRodney W. Grimes.\" 24afe61c15SRodney W. Grimes.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 25afe61c15SRodney W. Grimes.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 26afe61c15SRodney W. Grimes.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 27afe61c15SRodney W. Grimes.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 28afe61c15SRodney W. Grimes.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 29afe61c15SRodney W. Grimes.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 30afe61c15SRodney W. Grimes.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 31afe61c15SRodney W. Grimes.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 32afe61c15SRodney W. Grimes.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 33afe61c15SRodney W. Grimes.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 34afe61c15SRodney W. Grimes.\" SUCH DAMAGE. 35afe61c15SRodney W. Grimes.\" 36afe61c15SRodney W. Grimes.\" @(#)stdarg.3 8.1 (Berkeley) 6/5/93 377f3dea24SPeter Wemm.\" $FreeBSD$ 38afe61c15SRodney W. Grimes.\" 3986954511SMike Barcroft.Dd September 18, 2002 40afe61c15SRodney W. Grimes.Dt STDARG 3 41afe61c15SRodney W. Grimes.Os 42afe61c15SRodney W. Grimes.Sh NAME 43afe61c15SRodney W. Grimes.Nm stdarg 44afe61c15SRodney W. Grimes.Nd variable argument lists 45afe61c15SRodney W. Grimes.Sh SYNOPSIS 4632eef9aeSRuslan Ermilov.In stdarg.h 47afe61c15SRodney W. Grimes.Ft void 48afe61c15SRodney W. Grimes.Fn va_start "va_list ap" last 49afe61c15SRodney W. Grimes.Ft type 50afe61c15SRodney W. Grimes.Fn va_arg "va_list ap" type 51afe61c15SRodney W. Grimes.Ft void 5286954511SMike Barcroft.Fn va_copy "va_list dest" "va_list src" 5386954511SMike Barcroft.Ft void 54afe61c15SRodney W. Grimes.Fn va_end "va_list ap" 55afe61c15SRodney W. Grimes.Sh DESCRIPTION 56afe61c15SRodney W. GrimesA function may be called with a varying number of arguments of varying 57afe61c15SRodney W. Grimestypes. 58afe61c15SRodney W. GrimesThe include file 59afe61c15SRodney W. Grimes.Aq Pa stdarg.h 60afe61c15SRodney W. Grimesdeclares a type 61afe61c15SRodney W. Grimes.Pq Em va_list 62afe61c15SRodney W. Grimesand defines three macros for stepping 63afe61c15SRodney W. Grimesthrough a list of arguments whose number and types are not known to 64afe61c15SRodney W. Grimesthe called function. 65afe61c15SRodney W. Grimes.Pp 66afe61c15SRodney W. GrimesThe called function must declare an object of type 67afe61c15SRodney W. Grimes.Em va_list 68afe61c15SRodney W. Grimeswhich is used by the macros 69afe61c15SRodney W. Grimes.Fn va_start , 70afe61c15SRodney W. Grimes.Fn va_arg , 71afe61c15SRodney W. Grimesand 72afe61c15SRodney W. Grimes.Fn va_end . 73afe61c15SRodney W. Grimes.Pp 74afe61c15SRodney W. GrimesThe 75afe61c15SRodney W. Grimes.Fn va_start 76afe61c15SRodney W. Grimesmacro initializes 77afe61c15SRodney W. Grimes.Fa ap 78afe61c15SRodney W. Grimesfor subsequent use by 79afe61c15SRodney W. Grimes.Fn va_arg 80afe61c15SRodney W. Grimesand 81afe61c15SRodney W. Grimes.Fn va_end , 82afe61c15SRodney W. Grimesand must be called first. 83afe61c15SRodney W. Grimes.Pp 84afe61c15SRodney W. GrimesThe parameter 85afe61c15SRodney W. Grimes.Fa last 86afe61c15SRodney W. Grimesis the name of the last parameter before the variable argument list, 87afe61c15SRodney W. Grimesi.e. the last parameter of which the calling function knows the type. 88afe61c15SRodney W. Grimes.Pp 89afe61c15SRodney W. GrimesBecause the address of this parameter is used in the 90afe61c15SRodney W. Grimes.Fn va_start 91afe61c15SRodney W. Grimesmacro, it should not be declared as a register variable, or as a 92afe61c15SRodney W. Grimesfunction or an array type. 93afe61c15SRodney W. Grimes.Pp 94afe61c15SRodney W. GrimesThe 95afe61c15SRodney W. Grimes.Fn va_start 96afe61c15SRodney W. Grimesmacro returns no value. 97afe61c15SRodney W. Grimes.Pp 98afe61c15SRodney W. GrimesThe 99afe61c15SRodney W. Grimes.Fn va_arg 100afe61c15SRodney W. Grimesmacro expands to an expression that has the type and value of the next 101afe61c15SRodney W. Grimesargument in the call. 102afe61c15SRodney W. GrimesThe parameter 103afe61c15SRodney W. Grimes.Fa ap 104afe61c15SRodney W. Grimesis the 105afe61c15SRodney W. Grimes.Em va_list Fa ap 106afe61c15SRodney W. Grimesinitialized by 107afe61c15SRodney W. Grimes.Fn va_start . 108afe61c15SRodney W. GrimesEach call to 109afe61c15SRodney W. Grimes.Fn va_arg 110afe61c15SRodney W. Grimesmodifies 111afe61c15SRodney W. Grimes.Fa ap 112afe61c15SRodney W. Grimesso that the next call returns the next argument. 113afe61c15SRodney W. GrimesThe parameter 114afe61c15SRodney W. Grimes.Fa type 115afe61c15SRodney W. Grimesis a type name specified so that the type of a pointer to an 116afe61c15SRodney W. Grimesobject that has the specified type can be obtained simply by 117afe61c15SRodney W. Grimesadding a * 118afe61c15SRodney W. Grimesto 119afe61c15SRodney W. Grimes.Fa type . 120afe61c15SRodney W. Grimes.Pp 121afe61c15SRodney W. GrimesIf there is no next argument, or if 122afe61c15SRodney W. Grimes.Fa type 123afe61c15SRodney W. Grimesis not compatible with the type of the actual next argument 124afe61c15SRodney W. Grimes(as promoted according to the default argument promotions), 125afe61c15SRodney W. Grimesrandom errors will occur. 126afe61c15SRodney W. Grimes.Pp 127afe61c15SRodney W. GrimesThe first use of the 128afe61c15SRodney W. Grimes.Fn va_arg 129afe61c15SRodney W. Grimesmacro after that of the 130afe61c15SRodney W. Grimes.Fn va_start 131afe61c15SRodney W. Grimesmacro returns the argument after 132afe61c15SRodney W. Grimes.Fa last . 133afe61c15SRodney W. GrimesSuccessive invocations return the values of the remaining 134afe61c15SRodney W. Grimesarguments. 135afe61c15SRodney W. Grimes.Pp 136afe61c15SRodney W. GrimesThe 13786954511SMike Barcroft.Fn va_copy 13886954511SMike Barcroftmacro copies a variable argument list, previously initialized by 13986954511SMike Barcroft.Fn va_start , 14086954511SMike Barcroftfrom 14186954511SMike Barcroft.Va src 14286954511SMike Barcroftto 14386954511SMike Barcroft.Va dest . 14486954511SMike BarcroftThe state is preserved such that it is equivalent to calling 14586954511SMike Barcroft.Fn va_start 14686954511SMike Barcroftwith the same second argument used with 14786954511SMike Barcroft.Va src , 14886954511SMike Barcroftand calling 14986954511SMike Barcroft.Fn va_arg 15086954511SMike Barcroftthe same number of times as called with 15186954511SMike Barcroft.Va src . 15286954511SMike Barcroft.Pp 15386954511SMike BarcroftThe 15486954511SMike Barcroft.Fn va_copy 15586954511SMike Barcroftmacro returns no value. 15686954511SMike Barcroft.Pp 15786954511SMike BarcroftThe 158afe61c15SRodney W. Grimes.Fn va_end 159afe61c15SRodney W. Grimesmacro handles a normal return from the function whose variable argument 160afe61c15SRodney W. Grimeslist was initialized by 161afe61c15SRodney W. Grimes.Fn va_start . 162afe61c15SRodney W. Grimes.Pp 163afe61c15SRodney W. GrimesThe 164afe61c15SRodney W. Grimes.Fn va_end 165afe61c15SRodney W. Grimesmacro returns no value. 166afe61c15SRodney W. Grimes.Sh EXAMPLES 167afe61c15SRodney W. GrimesThe function 168afe61c15SRodney W. Grimes.Em foo 169afe61c15SRodney W. Grimestakes a string of format characters and prints out the argument 170afe61c15SRodney W. Grimesassociated with each format character based on the type. 171afe61c15SRodney W. Grimes.Bd -literal -offset indent 172afe61c15SRodney W. Grimesvoid foo(char *fmt, ...) 173afe61c15SRodney W. Grimes{ 174afe61c15SRodney W. Grimes va_list ap; 175afe61c15SRodney W. Grimes int d; 176cc023582SDima Dorfman char c, *s; 177afe61c15SRodney W. Grimes 178afe61c15SRodney W. Grimes va_start(ap, fmt); 179afe61c15SRodney W. Grimes while (*fmt) 180afe61c15SRodney W. Grimes switch(*fmt++) { 181afe61c15SRodney W. Grimes case 's': /* string */ 182afe61c15SRodney W. Grimes s = va_arg(ap, char *); 183afe61c15SRodney W. Grimes printf("string %s\en", s); 184afe61c15SRodney W. Grimes break; 185afe61c15SRodney W. Grimes case 'd': /* int */ 186afe61c15SRodney W. Grimes d = va_arg(ap, int); 187afe61c15SRodney W. Grimes printf("int %d\en", d); 188afe61c15SRodney W. Grimes break; 189afe61c15SRodney W. Grimes case 'c': /* char */ 19004bbb62bSJoshua Peck Macdonald /* Note: char is promoted to int. */ 19104bbb62bSJoshua Peck Macdonald c = va_arg(ap, int); 192afe61c15SRodney W. Grimes printf("char %c\en", c); 193afe61c15SRodney W. Grimes break; 194afe61c15SRodney W. Grimes } 195afe61c15SRodney W. Grimes va_end(ap); 196afe61c15SRodney W. Grimes} 197afe61c15SRodney W. Grimes.Ed 198afe61c15SRodney W. Grimes.Sh STANDARDS 199afe61c15SRodney W. GrimesThe 200afe61c15SRodney W. Grimes.Fn va_start , 201afe61c15SRodney W. Grimes.Fn va_arg , 202afe61c15SRodney W. Grimesand 203afe61c15SRodney W. Grimes.Fn va_end 204afe61c15SRodney W. Grimesmacros conform to 205588a200cSRuslan Ermilov.St -isoC . 206afe61c15SRodney W. Grimes.Sh COMPATIBILITY 207afe61c15SRodney W. GrimesThese macros are 208afe61c15SRodney W. Grimes.Em not 209afe61c15SRodney W. Grimescompatible with the historic macros they replace. 210afe61c15SRodney W. GrimesA backward compatible version can be found in the include 211afe61c15SRodney W. Grimesfile 212afe61c15SRodney W. Grimes.Aq Pa varargs.h . 213afe61c15SRodney W. Grimes.Sh BUGS 214afe61c15SRodney W. GrimesUnlike the 215afe61c15SRodney W. Grimes.Em varargs 216afe61c15SRodney W. Grimesmacros, the 2174b66483fSRuslan Ermilov.Nm 218afe61c15SRodney W. Grimesmacros do not permit programmers to 219afe61c15SRodney W. Grimescode a function with no fixed arguments. 220afe61c15SRodney W. GrimesThis problem generates work mainly when converting 221afe61c15SRodney W. Grimes.Em varargs 222afe61c15SRodney W. Grimescode to 2234b66483fSRuslan Ermilov.Nm 224afe61c15SRodney W. Grimescode, 225afe61c15SRodney W. Grimesbut it also creates difficulties for variadic functions that 226afe61c15SRodney W. Grimeswish to pass all of their arguments on to a function 227afe61c15SRodney W. Grimesthat takes a 228afe61c15SRodney W. Grimes.Em va_list 229afe61c15SRodney W. Grimesargument, such as 230afe61c15SRodney W. Grimes.Xr vfprintf 3 . 231