#include <stdio.h> #include <stdarg.h> int dprintf(int fd, const char *restrict fmt, ...) { int ret; va_list ap; va_start(ap, fmt); ret = vdprintf(fd, fmt, ...
確定! 回上一頁