stdafx.cpp

来自「这是一个嗅探器」· C++ 代码 · 共 39 行

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