User Tools

Site Tools


Sidebar

Programming Reference/Librarys

Question & Answer







because of the inhumane working conditions at amazon in Germany, I will offer the Amazon app no more! (ARD Reportage)
c:stdarg.h:va_start
void va_start(va_list ap, argN);

description

       The va_start() macro initializes ap for subsequent use by va_arg() and
       va_end(), and must be called first.
 
       The argument last is the name of the last argument before the variable
       argument list, that is, the last argument of which the calling function knows
       the type.
 
       Because the address of this argument may be used in the va_start() macro, it
       should not be declared as a register variable, or as a function or an array
       type.
 

The va_start(), va_arg(), and va_end() macros conform to C89. C99 defines the va_copy() macro.

c/stdarg.h/va_start.txt · Last modified: 2013/01/22 22:02 (external edit)

The new Question & Answer System is online and waiting for your Questions about Programming problems http://ask.code-reference.com Impressum