qc.hlp (Table of Contents; Topic list)
va_list
                                             Up Contents Index Back
────────────────────────────────────────────────────────────────────────────
 
  Type:      va_list
 
  Include:   <stdarg.h> or <stdio.h>
 
  Syntax:    typedef char *va_list;
 
  Synopsis:  Type of the rightmost parameter of a function that accepts
             a variable number of arguments of varying types. The
             parameter holds information used by va_start, va_arg, and
             va_end for access to the variable arguments.
 
  See also:  va_arg, va_end, va_start