aboutsummaryrefslogtreecommitdiffstats
path: root/src/binhex.h
blob: 71348db098b89f102eedcaf4d88abec0c329eceb (plain)
1
2
3
4
5
6
7
8
9
#ifndef BINHEX_H
#define BINHEX_H

char *bin2hex(const unsigned char *bin, size_t len);
int hexchr2bin(const char hex, char *out);
size_t hexs2bin(const char *hex, unsigned char **out);

#endif /* BINHEX_H */