?? 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 + -