⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 config.bat

📁 一款拥有一定历史的C语言编译器
💻 BAT
字号:
@echo OFF
REM		config.bat
REM		~~~~~~~~~~
REM	This file checks if the current CONFIG.H header file
REM     is the same as the header file given as the parameter.
REM     If not it copies the given header file over the CONFIG.H
REM     header and deletes all files that are now out of date.

diff %1 config.h >NUL
if NOT ERRORLEVEL 1 goto END
copy %1 config.h
del c86.rs?
del *.obj
del *.exe
:END

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -