1 2#ifndef HEX_H 3#define HEX_H 4#include <stdlib.h> 5#include <string.h> 6 7size_t hexs2bin(const char *hex, unsigned char **out); 8char *bin2hex(const unsigned char *bin, size_t len); 9int hexchr2bin(const char hex, char *out); 10 11#endif 12 13