attractivechaos / kann

A lightweight C library for artificial neural networks
Other
678 stars 117 forks source link

What does "va_start" mean in kann ? #23

Closed shipleyxie closed 5 years ago

shipleyxie commented 5 years ago

IN kann.c line 521: va_start(ap, n_d); for (i = 0; i < n_d; ++i) d[i] = va_arg(ap, int); va_end(ap) my question is what is this uesed for?

attractivechaos commented 5 years ago

See stdarg.h.