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

📄 title.c

📁 PocketCMD是与pocketconsole配合实用的命令行解释器(Shell)
💻 C
字号:
/* *  title.c - title internal command. * * *  History: *	1999-02-11 Emanuele Aliberti */#include "config.h"#ifdef INCLUDE_CMD_TITLE#include "cmd.h"INT cmd_title (LPTSTR cmd, LPTSTR param){	/* Do nothing if no args */	if (*param == _T('\0'))		return 0;	/* Asking help? */	if (!_tcsncmp(param, _T("/?"), 2))	{		ConOutPuts (_T("Sets the window title for the command prompt window.\n")					   _T("\n")					   _T("TITLE [string]\n")					   _T("\n")					   _T("  string       Specifies the title for the command prompt window."));		return 0;	}	return SetConsoleTitle (param);}#endif /* def INCLUDE_CMD_TITLE *//* EOF */

⌨️ 快捷键说明

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