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

📄 asn1fix.h

📁 RSA加密/解密算法源码 asn1c-0.9.12
💻 H
字号:
/* * This is the public interface for the processor (fixer) of the ASN.1 tree * produced by the libasn1parser. */#ifndef	ASN1FIX_H#define	ASN1FIX_H#include <asn1parser.h>/* * Operation flags for the function below. */enum asn1f_flags {	A1F_NOFLAGS,	A1F_DEBUG			= 0x01,	/* Print debugging output */	A1F_EXTENDED_SizeConstraint	= 0x02,	/* Enable constraint gen code */};/* * Perform a set of semantics checks, transformations and small fixes * on the given tree. * RETURN VALUES: * 	-1:	Some fatal problems were encountered. *	 0:	No inconsistencies were found. *	 1:	Some warnings were issued, but no fatal problems encountered. */int asn1f_process(asn1p_t *_asn,	enum asn1f_flags,	void (*error_log_callback)(int _severity, const char *fmt, ...));/* * Explicitly mark type as known. */int asn1f_make_known_external_type(const char *);#endif	/* ASN1FIX_H */

⌨️ 快捷键说明

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