diff options
author | ben | 2019-05-27 21:40:41 +0200 |
---|---|---|
committer | ben | 2019-05-27 21:40:41 +0200 |
commit | accdbc780617a4f4b30790ffb25ab1d26652c315 (patch) | |
tree | 2633c1246a35e7242bfc693959830ae63b641301 /src/binhex.h | |
download | inexact-accdbc780617a4f4b30790ffb25ab1d26652c315.tar.gz inexact-accdbc780617a4f4b30790ffb25ab1d26652c315.tar.bz2 inexact-accdbc780617a4f4b30790ffb25ab1d26652c315.tar.xz |
First public release
Diffstat (limited to 'src/binhex.h')
-rw-r--r-- | src/binhex.h | 9 |
1 files changed, 9 insertions, 0 deletions
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 */ + |