void write_log(char *format, ...) { va_list arg; char txt[512]; // Get string va_start(arg, format); vsprintf(txt, format ...
確定! 回上一頁