va_end method
Cleans up the va_list.
In Dart, this simply exhausts the internal index.
Implementation
void va_end(va_list ap) {
ap._index = ap._args.length;
}
Cleans up the va_list.
In Dart, this simply exhausts the internal index.
void va_end(va_list ap) {
ap._index = ap._args.length;
}