Movatterモバイル変換


[0]ホーム

URL:


cppreference.com
Namespaces
Variants
    Actions

      va_list

      From cppreference.com
      <c‎ |variadic
       
       
       
      Defined in header<stdarg.h>
      /* unspecified */ va_list;

      va_list is a complete object type suitable for holding the information needed by the macrosva_start,va_copy,va_arg, andva_end.

      If ava_list instance is created, passed to another function, and used viava_arg in that function, then any subsequent use in the calling function should be preceded by a call tova_end.

      It is legal to pass a pointer to ava_list object to another function and then use that object after the function returns.

      [edit]References

      • C11 standard (ISO/IEC 9899:2011):
      • 7.16/3 Variable arguments <stdarg.h> (p: 269)
      • C99 standard (ISO/IEC 9899:1999):
      • 7.15/3 Variable arguments <stdarg.h> (p: 249)
      • C89/C90 standard (ISO/IEC 9899:1990):
      • 4.8 VARIABLE ARGUMENTS <stdarg.h>

      [edit]See also

      accesses the next variadic function argument
      (function macro)[edit]
      (C99)
      makes a copy of the variadic function arguments
      (function macro)[edit]
      ends traversal of the variadic function arguments
      (function macro)[edit]
      enables access to variadic function arguments
      (function macro)[edit]
      Retrieved from "https://en.cppreference.com/mwiki/index.php?title=c/variadic/va_list&oldid=117386"

      [8]ページ先頭

      ©2009-2025 Movatter.jp