diff options
Diffstat (limited to '')
-rw-r--r-- | hex.c | 13 |
1 files changed, 0 insertions, 13 deletions
@@ -1,13 +0,0 @@ -/* See LICENSE file for copyright and license details. */ -#include "common.h" - - -char * -hex(char *out, const unsigned char *in, size_t n, const char *xdigits) -{ - for (; n--; in++) { - *out++ = xdigits[(*in >> 4) & 15]; - *out++ = xdigits[(*in >> 0) & 15]; - } - return out; -} |