用于log系统的变长参数的函数

总在寻找一种简简单单就能说明问题的方式:


#include <stdarg.h>

int Printf(char *pszFormat, ...)
{
       va_list   pArgList;
       va_start(pArgList, pszFormat);
       int nByteWrite = vfprintf(stdout, pszFormat, pArgList);
       va_end(pArgList);

      return nByteWrite;
}

你可能感兴趣的:(用于log系统的变长参数的函数)