Getting ellipses function parameters without an initial argument
- by Tox1k
So I've been making a custom parser for a scripting language, and I wanted to be able to pass only ellipses arguments. I don't need or want an initial variable, however Microsoft and C seem to want something else. FYI, see bottom for info.
I've looked at the va_* definitions
#define _crt_va_start(ap,v) ( ap = (va_list)_ADDRESSOF(v) +…