Copyright (C) 2000-2012 |
GNU Info (libc.info)How VariadicHow Variadic Functions are Defined and Used ------------------------------------------- Defining and using a variadic function involves three steps: * _Define_ the function as variadic, using an ellipsis (`...') in the argument list, and using special macros to access the variable arguments. Note: Receiving Arguments. * _Declare_ the function as variadic, using a prototype with an ellipsis (`...'), in all the files which call it. Note: Variadic Prototypes. * _Call_ the function by writing the fixed arguments followed by the additional variable arguments. Note: Calling Variadics.
automatically generated by info2www version 1.2.2.9 |