📄 support.c
字号:
/* * support.c -- minimal support functions. This is to keep the exit code * generic enough that pattern matching from expect should be easier. */#if defined (unix)#define PRINT printf /* so we can test on a native system */#else#define PRINT iprintf /* this is only in newlib */#endifintfail (str)char *str;{ PRINT ("FAIL: %s\n", str);}intpass (str)char *str;{ PRINT ("PASS: %s\n", str);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -