From accdbc780617a4f4b30790ffb25ab1d26652c315 Mon Sep 17 00:00:00 2001 From: ben Date: Mon, 27 May 2019 21:40:41 +0200 Subject: First public release --- src/binhex.h | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/binhex.h (limited to 'src/binhex.h') diff --git a/src/binhex.h b/src/binhex.h new file mode 100644 index 0000000..71348db --- /dev/null +++ b/src/binhex.h @@ -0,0 +1,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 */ + -- cgit v1.2.3