Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
58 views
1
2
#ifndef HEX_H
3
#define HEX_H
4
#include <stdlib.h>
5
#include <string.h>
6
7
size_t hexs2bin(const char *hex, unsigned char **out);
8
char *bin2hex(const unsigned char *bin, size_t len);
9
int hexchr2bin(const char hex, char *out);
10
11
#endif
12
13