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

📄 verify.c

📁 PocketCMD是与pocketconsole配合实用的命令行解释器(Shell)
💻 C
字号:
/* *  VERIFY.C - verify internal command. * * *  History: * *    31 Jul 1998 (John P Price) *        started. * *    18-Jan-1999 (Eric Kohl <ekohl@abo.rhein-zeitung.de>) *        VERIFY is just a dummy under Win32; it only exists *        for compatibility!!! * *    20-Jan-1999 (Eric Kohl <ekohl@abo.rhein-zeitung.de>) *        Unicode and redirection ready! */#include "config.h"#ifdef INCLUDE_CMD_VERIFY#include "cmd.h"/* global verify flag */static BOOL bVerify = FALSE;INT cmd_verify (LPTSTR cmd, LPTSTR param){	if (!_tcsncmp (param, _T("/?"), 2))	{		ConOutPuts (_T("This command is just a dummy!!\n")			_T( "Sets whether to verify that your files are written correctly to a\n")			_T("disk.\n\n")			_T("VERIFY [ON | OFF]\n\n")			_T("Type VERIFY without a parameter to display the current VERIFY setting."));					   return 0;	}	if (!*param)		ConOutPrintf (_T("VERIFY is %s.\n"), bVerify ? D_ON : D_OFF);	else if (_tcsicmp (param, D_OFF) == 0)		bVerify = FALSE;	else if (_tcsicmp (param, D_ON) == 0)		bVerify = TRUE;	else		ConOutPuts (_T("Must specify ON or OFF."));	return 0;}#endif

⌨️ 快捷键说明

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