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

📄 checks.cpp

📁 用于词法分析的词法分析器
💻 CPP
字号:
/*  $Id: checks.cpp,v 1.1 1996/04/21 08:18:56 matt Exp $  Warn and abort macros.    (c) Sep 19th Matt Phillips.  */#include <iostream.h>#include <stdlib.h>#include "checks.h"void _chkfail (const char *file, int line, int abrt, const char *msg){  cerr << (abrt ? "Fatal" : "Warning") << ": " << msg       << ", file " << file << ", line " << line << endl;    if (abrt) abort (); }

⌨️ 快捷键说明

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