asn1fix.h

来自「RSA加密/解密算法源码 asn1c-0.9.12」· C头文件 代码 · 共 38 行

H
38
字号
/* * 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 + =
减小字号Ctrl + -
显示快捷键?