I was searching for a description of the variadic functions in the C11 standard but the only information I found was barely mentioning the topic. Can someone show me reference to all topics about them that can be found in it?
What I've found myself so far is in §6.9.1.8:
If a function that accepts a variable number of arguments is defined without a parameter type list that ends with the ellipsis notation, the behavior is undefined.
And in §7.16 which describes the <stdarg.h>
header file. However I highly doubt this is all the information which can be found about variadic functions in the standard.