📄 stdafx.cpp
字号:
// stdafx.cpp : source file that includes just the standard includes
// SnifferPro.pch will be the pre-compiled header
// stdafx.obj will contain the pre-compiled type information
#include "stdafx.h"
void iptos(u_long in,char output[])
{
u_char *p;
p = (u_char *)∈
sprintf(output, "%d.%d.%d.%d", p[0], p[1], p[2], p[3]);
}
bool Founder::operator <(Founder in)
{
if(this->seq<in.seq)
return true;
else
return false;
}
bool Founder::operator ==(Founder in)
{
if(this->seq==in.seq)
return true;
else
return false;
}
bool Founder::operator >(Founder in)
{
if(this->seq>in.seq)
return true;
else
return false;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -