📄 breaker.cpp
字号:
// breaker.cc// code for breaker.h// copyright SafeTP Development Group, Inc., 2000 Terms of use are as specified in license.txt// SafeTP project#include "breaker.h" // this module#ifdef __BORLANDC__# pragma warn -use#endifvoid ackackack(int*) {}void breaker(){ static int i=0; int a=1; // all this junk is just to make sure // that this function has a complete ackackack(&a); // stack frame, so the debugger can unwind i++; // the stack}#ifdef __BORLANDC__# pragma warn .use#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -