📄 mac_main.c
字号:
/* * mac_main.c -- The REAL entry point which * calls the tools main code. For the tools * the symbol "main" has been #defined to "tool_main" * so that this entry point may be used to access * the user-input first. */#undef mainintmain(){ int argc; char **argv; argc=ccommand(&argv); return tool_main(argc,argv); // Call the tool "main()" routine}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -