?? debug.c
字號:
#include <stdio.h>#include <stdarg.h>#include "debug.h"void dbg_print(const char *format, ...){ va_list ap; va_start(ap, format); vsyslog(LOG_DAEMON, format, ap); va_end(ap); vfprintf(stdout, format, ap);}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -