hey i cant find this by googling so ill ask here. say you have a function that goes like this:
void myFunction(char * whatever, ...){
}
how do you access the variables passed after 'whatever'.
Googled "variable number of arguments in C". You could have left out "of" and "in."
Came up with:
http://publications.gbdirect.co.uk/c_book/chapter9/stdarg.html
(9th result -- others may have been there, but this one looked best from the summary page)
Look up va_list.
thanks
or varargs