mac_main.c
来自「tiff文件开发库」· C语言 代码 · 共 21 行
C
21 行
/* * 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 + =
减小字号Ctrl + -
显示快捷键?