mirror of
https://github.com/radareorg/radare2.git
synced 2024-11-28 15:41:38 +00:00
11 lines
428 B
C
11 lines
428 B
C
#ifndef R_ASN1_INTERNAL_H
|
|
#define R_ASN1_INTERNAL_H
|
|
|
|
R_API ut32 r_asn1_count_objects (const ut8 *buffer, ut32 length);
|
|
R_API RASN1String *r_asn1_create_string (const char *string, bool allocated, ut32 length);
|
|
R_API RASN1String *r_asn1_create_string2 (const char *string, bool allocated);
|
|
R_API RASN1String *r_asn1_concatenate_strings (RASN1String* s0, RASN1String* s1, bool freestr);
|
|
|
|
#endif /* R_ASN1_INTERNAL_H */
|
|
|