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

📄 pgpmsg.c

📁 vc环境下的pgp源码
💻 C
字号:
/*
 * pgpMsg.c -- a way to obtain the list of PGP Messages
 *
 * Written by:	Derek Atkins <warlord@MIT.EDU>
 *
 * $Id: pgpMsg.c,v 1.4 1997/06/16 22:49:00 lloyd Exp $
 */

#include <stdio.h>	/* For sprintf() */

#include "pgpConfig.h"

#define PGPMSG(msg, string) { msg, string },

/* List of all message codes */
struct pgpmsg_t {
	int msg;
	char const *string;
};

static struct pgpmsg_t const pgpmsglist[] = {
#include "pgpMsg.h"
	{ 0, 0 }	/* End-of-list placeholder */
};

/* Get rid of warning from gcc about missing prototype */
char const  *pgpmsgString (int code);

char const *
pgpmsgString (int code)
{
	unsigned i;
	static char buf[] = "Unknown msg code xxxxxxxxx";
	/*                   1234567890123456789 */

	for (i = 0; i < sizeof (pgpmsglist)/sizeof (*pgpmsglist); i++) {
		if (pgpmsglist[i].msg == code)
			return pgpmsglist[i].string;
	}
	sprintf (buf+19, "%+d", code);
	return buf;
}

⌨️ 快捷键说明

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