加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
log.c 425 Bytes
一键复制 编辑 原始数据 按行查看 历史
一个杀手 提交于 2020-08-28 21:40 . .ignore
#include "log.h"
/*
* 打印
*/
void log(const char *color,const char *fmt,...)
{
//打印文件信息,函数信息,设置打印颜色
printf("%s info >> file:%s; line:%d; fuction:%s :",color,__FILE__,__LINE__,__FUNCTION__);
//获取参数...
va_list list;
//初始化参数
va_start(list,fmt);
//打印参数
vprintf(fmt,list);
//关闭参数
va_end(list);
//消除颜色,并换行
printf("\e[0m\r\n");
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化