On Fri, 2014-09-12 at 21:30 +0100, David Howells wrote:
> Mimi Zohar <zo...@linux.vnet.ibm.com> wrote:
> > How about using hex_byte_pack()?
> It doesn't do a bufferful, only one byte.

I think Mimi meant using something like:

char *bin2hex(char *dst, const void *src, size_t count)
{
        const unsigned char *_src = src;

        while (count--)
                dst = hex_byte_pack(dst, *_src++);

        return dst;
}


--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to