1
#include <stdarg.h> void format(char* out, const char* fmt,...){ va_list ap; va_start(ap,fmt); va_end(ap); }