Hi, i've a little question concerning C-Programming:
How exactly do i "enable"/create the "..." argument in C? I can't use it if I don't define it... How do I create such an argument list?
Are there docs for this? because I can't find any...
And ONLY with sources, "i stay stupid" *gg*
C functions
Re:C functions
Can't remember exactly off hand but you may want to google for these macros:-
[0]va_start
[0]va_arg
[0]va_end
[0]va_list (type defined as unsigned char*)
[0]va_start
[0]va_arg
[0]va_end
[0]va_list (type defined as unsigned char*)
Re:C functions
You want to have a look at the va_xxx (va_start, va_arg, va_end) functions.
See stdarg.h
See stdarg.h