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

📄 free_48.c

📁 解吸SEED格式的源代码
💻 C
字号:
/*===========================================================================*//* SEED reader     |              free_type48              |  station header *//*===========================================================================*//*	Name:		free_type48*/#include "rdseed.h"void free_type48 (){	struct type48 *type48, *t;	int i;	type48 = type48_head;	while (type48 != NULL)	{			if (type48->name)			free(type48->name);		for (i = 0; i < type48->number_calibrations; i++)		{			if (type48->calibration[i].time)				free(type48->calibration[i].time);		}		if (type48->calibration)			free ((char *)(type48->calibration));		t = type48->next;		free((char *) type48);		type48 = t;	}	type48_head = NULL;}

⌨️ 快捷键说明

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