blob: 73875fb1cc8c81c8dad96dc8db72d627eb34e389 [file] [log] [blame]
vlmfa67ddc2004-06-03 03:38:44 +00001#ifndef _ASN1PRINT_H_
2#define _ASN1PRINT_H_
3
4enum asn1print_flags_e {
5 APF_NOFLAGS = 0x00,
6 APF_LINE_COMMENTS = 0x01,
7 APF_NO_SOURCE_COMMENTS = 0x02,
8};
9
10/*
11 * Print the contents of the parsed ASN.1 syntax tree.
12 */
13int asn1print(asn1p_t *asn, enum asn1print_flags_e flags);
14
15
16#endif /* _ASN1PRINT_H_ */