libtools
hex.h
Go to the documentation of this file.
1 
20 #ifndef __TOOLS_HEX_H
21 #define __TOOLS_HEX_H
22 
23 #include <stddef.h>
24 
40 char *bin2hex(const void *data, size_t len, char *hex, size_t hex_len);
41 
49 size_t hex2bin(const char *hex, void *data, size_t data_len);
50 
53 #endif /* __TOOLS_HEX_H */
size_t hex2bin(const char *hex, void *data, size_t data_len)
convert hex string to binary data
char * bin2hex(const void *data, size_t len, char *hex, size_t hex_len)
convert binary data to hex string