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

📄 asn1fix_value.h

📁 ASN.1解析解码工具,可以解析各种ASN.1格式的文件,并对相应的BER文件解码
💻 H
字号:
/* * Functions related with processing values. */#ifndef	_ASN1FIX_VALUE_H_#define	_ASN1FIX_VALUE_H_/* * Resolve the value given by reference. * This function also takes a parameter which specifies the desired * value's type. *  * RETURN VALUES: * 0:		Value resolved successfully. * -1/EPERM:	Recursive looping detected. * -1/EEXIST:	Reference is not compatible with the desired type. * -1/ESRCH:	Cannot find the terminal reference. */int asn1f_value_resolve(arg_t *arg, asn1p_expr_t *tc,	const enum asn1p_constraint_type_e *opt_constr_type);/* * Check if a value in value_expr refers to the enumeration or integer element * within the type provided. If yes, it will replace referenced value with * the appropriate inline value. */int asn1f_look_value_in_type(arg_t *arg,		asn1p_expr_t *type_expr, asn1p_expr_t *value_expr);#endif	/* _ASN1FIX_VALUE_H_ */

⌨️ 快捷键说明

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