Manpage of VA_START

Google
Web www.fiveanddime.net

VA_START

Section: NEWLIB (3)
Updated: 2005 Feb 23
Index Return to Main Contents
 

NAME

13.1.1 Initialize variable argument list ----------------------------------------

 

SYNOPSIS


     #include <stdarg.h>
     void va_start(va_list AP, RIGHTMOST);

 

DESCRIPTION

Use `va_start' to initialize the variable argument list AP, so that `va_arg' can extract values from it. RIGHTMOST is the name of the last explicit argument in the parameter list (the argument immediately preceding the ellipsis `...' that flags variable arguments in an ANSI C function header). You can only use `va_start' in a function declared using this ellipsis notation (not, for example, in one of its subfunctions).

 

RETURNS

`va_start' does not return a result.

 

PORTABILITY

ANSI C requires `va_start'.

 

SEE ALSO

va_start is part of the libc library. The full documentation for libc is maintained as a Texinfo manual. If info and libc are properly installed at your site, the command
info libc

will give you access to the complete manual.


 

Index

NAME
SYNOPSIS
DESCRIPTION
RETURNS
PORTABILITY
SEE ALSO

This document was created by man2html, using the manual pages.
Time: 21:25:33 GMT, May 16, 2005



www.fiveanddime.net








Google
Web www.fiveanddime.net