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

📄 find_33.c

📁 解吸SEED格式的源代码
💻 C
字号:
/*===========================================================================*//* SEED reader     |             find_type33               |   abbrev dctnry *//*===========================================================================*//*	Name:		print_type34	Purpose:	print the contents of the units dictionary to standard output	Usage:		void print_type34 ();				print_type34 ();	Input:		none - uses information in globally-available structure	Output:		none	Externals:	type34_head - 1st entry in table; defined in structures.h, 					allocated in globals.h	Warnings:	none	Errors:		none	Called by:	print_abbrevdic	Calls to:	none	Algorithm:	print the contents of the structure to the standard output.	Notes:		The structure is a linked list; type34_head is the first member				of the list	Problems:	none known	References:	Halbert et al, 1988; see main routine	Language:	C, hopefully ANSI standard	Author:		Dennis O'Neill	Revisions:	07/15/88  Dennis O'Neill  Initial preliminary release 0.9				11/21/88  Dennis O'Neill  Production release 1.0				02/17/93  CL    nullpointer protect fprintfs*/#include "rdseed.h"void find_type33 (fp,code)FILE *fp;int code;{	struct type33 *type33;							/* looping vbl */	for (type33 = type33_head; type33 != NULL; type33 = type33->next)	{		if (type33->code == code)		{			fprintf (fp,"%s\n",				type33->abbreviation ? type33->abbreviation : "(null)");			break;		}	}	if (type33 == NULL)		fprintf (fp,"No Abbreviation Referenced\n");}

⌨️ 快捷键说明

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