```c #include <stdarg.h> struct Foo { int bar; }; void foozle(struct Foo foo, ...) { va_list args; va_start(args, foo); va_arg(args, struct Foo); va_end(args); } ```