]>
Commit | Line | Data |
---|---|---|
6b882a39 OM |
1 | //----------------------------------------------------------------------------- |
2 | // Copyright (C) 2018 Merlok | |
3 | // | |
4 | // This code is licensed to you under the terms of the GNU GPL, version 2 or, | |
5 | // at your option, any later version. See the LICENSE.txt file for the text of | |
6 | // the license. | |
7 | //----------------------------------------------------------------------------- | |
8 | // asn.1 dumping | |
9 | //----------------------------------------------------------------------------- | |
10 | #ifndef ASN1DUMP_H | |
11 | #define ASN1DUMP_H | |
12 | ||
13 | #include <stdint.h> | |
14 | #include <stdbool.h> | |
15 | #include <stddef.h> | |
16 | #include <stdio.h> | |
17 | #include "emv/tlv.h" | |
18 | ||
19 | extern bool asn1_tag_dump(const struct tlv *tlv, FILE *f, int level, bool *candump); | |
20 | ||
21 | #endif /* asn1utils.h */ |