📄 test.cpp
字号:
// $Id: test.cpp 82122 2008-06-23 11:12:17Z sma $
#include <stdio.h>
__declspec(dllimport) int test_entry(void);
// This is plain Windows code, not ACE. Therefore we disable
// the check for ACE_OS
// FUZZ: disable check_for_lack_ACE_OS
// FUZZ: disable check_for_improper_main_declaration
int main (int, char *[])
{
char line[80];
test_entry();
puts ("Ok, go... hit return to stop.");
gets (line);
return 0;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -