aboutsummaryrefslogtreecommitdiffstats
path: root/libasn1print/asn1print.h
blob: 73875fb1cc8c81c8dad96dc8db72d627eb34e389 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef	_ASN1PRINT_H_
#define	_ASN1PRINT_H_

enum asn1print_flags_e {
	APF_NOFLAGS		= 0x00,
	APF_LINE_COMMENTS	= 0x01,
	APF_NO_SOURCE_COMMENTS	= 0x02,
};

/*
 * Print the contents of the parsed ASN.1 syntax tree.
 */
int asn1print(asn1p_t *asn, enum asn1print_flags_e flags);


#endif	/* _ASN1PRINT_H_ */