breaker.cpp

来自「伯克利做的SFTP安全文件传输协议」· C++ 代码 · 共 27 行

CPP
27
字号
// 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 + =
减小字号Ctrl + -
显示快捷键?