robertmuth/Cwerg

shorten long function parameters list by passing the tail of the parameters in memory

robertmuth opened this issue · 0 comments

foo(a, b, c, d, e, f, g, h, i)

would become:

foo(a, b, c, d, e, f, rest)

where rest is a pointer to location in the caller stack containing a struct :{g h i}