blob: c24e58e870800f12610da5f09f4fa1a18584a4c5 [file] [log] [blame]
Lev Walkinf15320b2004-06-03 03:38:44 +00001#ifndef _ASN1PRINT_H_
2#define _ASN1PRINT_H_
3
Lev Walkin3140e0e2004-08-18 04:50:37 +00004enum asn1print_flags {
5 APF_NOFLAGS,
6 APF_LINE_COMMENTS = 0x01, /* Include line comments */
7 APF_DEBUG_CONSTRAINTS = 0x02, /* Explain constraints */
Lev Walkinf15320b2004-06-03 03:38:44 +00008};
9
10/*
11 * Print the contents of the parsed ASN.1 syntax tree.
12 */
Lev Walkin3140e0e2004-08-18 04:50:37 +000013int asn1print(asn1p_t *asn, enum asn1print_flags flags);
Lev Walkinf15320b2004-06-03 03:38:44 +000014
15
16#endif /* _ASN1PRINT_H_ */