mirror of
https://github.com/radareorg/radare2.git
synced 2025-01-12 00:36:14 +00:00
13 lines
461 B
C
13 lines
461 B
C
#ifndef R_HEX_H
|
|
#define R_HEX_H
|
|
|
|
R_API int r_hex_pair2bin(const char *arg);
|
|
R_API int r_hex_str2binmask(const char *in, ut8 *out, ut8 *mask);
|
|
R_API int r_hex_str2bin(const char *in, ut8 *out);
|
|
R_API int r_hex_bin2str(const ut8 *in, int len, char *out);
|
|
R_API char *r_hex_bin2strdup(const ut8 *in, int len);
|
|
R_API int r_hex_to_byte(ut8 *val, ut8 c);
|
|
R_API int r_hex_str_is_valid(const char * s);
|
|
R_API st64 r_hex_bin_truncate(ut64 in, int n);
|
|
#endif // R_HEX_H
|