blob: 73875fb1cc8c81c8dad96dc8db72d627eb34e389 [file] [log] [blame]
#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_ */