📄 general.h
字号:
/* * General definitions * * Bruce Lowerre, Public domain, 1995, 1997 * * $Log: general.h,v $ * Revision 1.1 1997/05/13 14:54:43 lowerre * Initial revision * * */#ifndef GENERAL_H#define GENERAL_H//#include <unistd.h>#include <sys/types.h>#include <iostream.h>#include <fstream.h>#include <math.h>#include <signal.h>#include <setjmp.h>#include <time.h>#include <string.h>#include <stdlib.h>#include <stdio.h> // needed for sprintf#ifndef LOCAL#define LOCAL static#endif// How come the follow ain't defined in C++????#define TAB '\t'#undef False#undef Truetypedef enum {False, True} BOOLEAN;#endif // end of general.h
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -