⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ip_prefix.c

📁 Net-CDP-0.09 cdp相关源包
💻 C
字号:
/* * $Id: ip_prefix.c,v 1.1 2005/07/20 13:44:13 mchapman Exp $ */#include <system.h>struct cdp_ip_prefix *cdp_ip_prefix_new(struct in_addr network, uint8_t length) {	struct cdp_ip_prefix *result;	assert(length <= 32);	result = MALLOC(1, struct cdp_ip_prefix);	result->network = network;	result->length = length;	return result;}struct cdp_ip_prefix *cdp_ip_prefix_dup(const struct cdp_ip_prefix *ip_prefix) {	assert(ip_prefix);	return cdp_ip_prefix_new(		ip_prefix->network,		ip_prefix->length	);}voidcdp_ip_prefix_free(struct cdp_ip_prefix *ip_prefix) {	FREE(ip_prefix);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -