📄 checks.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 + -