📄 main.h
字号:
/* * main.h * * Exports from main.cpp. Pretty much infrastructure type functions * (timing, logging, etc.) plus command line arguments. */#ifndef __MAIN_H_#define __MAIN_H_#ifdef WIN32typedef __int64 int64;#elsetypedef long long int64;#endifextern int64 GetTime(void);/* * XXX brcc currently has grief with typedefs mixed with Brook code, so we * just prototype all these here. Since brcc runs before cpp, we sidestep * the issue. I apologize deeply. --Jeremy. */extern int64 start, mid, stop;#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -