void printf(const char *format, ...) {. char buf[PRINTF_BUF];. va_list ap;. va_start(ap, format);. vsnprintf(buf, sizeof(buf), format, ap);.
確定! 回上一頁