asn1print.h
来自「RSA加密/解密算法源码 asn1c-0.9.12」· C头文件 代码 · 共 19 行
H
19 行
#ifndef _ASN1PRINT_H_#define _ASN1PRINT_H_enum asn1print_flags { APF_NOFLAGS, APF_LINE_COMMENTS = 0x01, /* Include line comments */ APF_DEBUG_CONSTRAINTS = 0x02, /* Explain constraints */ APF_PRINT_XML_DTD = 0x04, /* Generate XML DTD */ APF_NOINDENT = 0x08, /* Disable indentation */};/* * Print the contents of the parsed ASN.1 syntax tree. */int asn1print(asn1p_t *asn, enum asn1print_flags flags);#endif /* _ASN1PRINT_H_ */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?