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

📄 free_31.c

📁 解吸SEED格式的源代码
💻 C
字号:
/*===========================================================================*//* SEED reader     |              free_type31              |   abbrev dctnry *//*===========================================================================*//*	Name:		free_type31*/#include "rdseed.h"void free_type31 (){	struct type31 *type31, *t;	type31 = type31_head;	while (type31 != NULL)	{		free(type31->class);		free(type31->comment);		t = type31->next;		free((char *)type31);		type31 = t;	}	type31_head = NULL;}

⌨️ 快捷键说明

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