In pure C how can i pass variable parameters into a function?
- by fmsf
Hey,
How can i pass (and access) using C, not c++, variable parameters into a function?
void foo(char* mandatory_param, char* optional_param, char* optional_param2...)
thanks
/fmsf