Etiket arşivi: va_arg

va_arg

2.10.3 va_arg Declaration: type va_arg(va_list ap, type); Expands to the next argument in the paramater list of the function with type type. Note that ap must be initialized with va_start. If there is no next argument, then the result is undefined.

Kütüphane, stdarg.h kategorisine gönderildi | , , , , , , , , , , , , , , , , , , ile etiketlendi | Yorum bırakın

va_start

2.10.2 va_start Declaration: void va_start(va_list ap, last_arg); Initializes ap for use with the va_arg and va_end macros. last_arg is the last known fixed argument being passed to the function (the argument before the ellipsis). Note that va_start must be called before using va_arg and va_end.

Kütüphane, stdarg.h kategorisine gönderildi | , , , , , , , , , , , , , , , , , , , , ile etiketlendi | Yorum bırakın