blob: 115e186cf7df0cbeef4f254a2eccebeaa8d68637 [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,
vlmfa67ddc2004-06-03 03:38:44 +00007};
8
9/*
10 * Print the contents of the parsed ASN.1 syntax tree.
11 */
12int asn1print(asn1p_t *asn, enum asn1print_flags_e flags);
13
14
15#endif /* _ASN1PRINT_H_ */