7 lines
104 B
C
7 lines
104 B
C
#include <stdarg.h>
|
|
void foo(int args, ...) {
|
|
va_list ap;
|
|
va_start(ap, args);
|
|
va_end(ap);
|
|
}
|