1 Star 1 Fork 0

liuyuanlin/IoTP2PGate

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
debug.c 351 Bytes
一键复制 编辑 原始数据 按行查看 历史
MisakaMikoto128 提交于 2022-01-12 14:40 . first commit
#include <stdbool.h>
#include <stdio.h>
#include <stdarg.h>
static bool debug_on = false;
void debug_print(const char *fmt, ...)
{
if (debug_on)
{
va_list ap;
va_start(ap, fmt);
vprintf(fmt, ap);
va_end(ap);
}
}
void set_debug_on()
{
debug_on = true;
}
void set_debug_off()
{
debug_on = false;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/liuyuanlin6445/IoTP2PGate.git
git@gitee.com:liuyuanlin6445/IoTP2PGate.git
liuyuanlin6445
IoTP2PGate
IoTP2PGate
master

搜索帮助