I need to loop all the dynamic arguments i have gave to my function, how?
I mean this kind of code:
void something(int setting1, int setting2, ...){
// loop somehow all the ... arguments and use setting1-2 values in that loop
}
setting1 and setting2 are not part of the dynamic argument list.