FreeCalypso > hg > freecalypso-tools
view uptools/libcoding/hexencode.c @ 558:a59a7f838fce
CHANGES: better explain that the newly added Am29DL640G flash
support also covers S29PL064J and S71PL064J
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Wed, 29 Jan 2020 08:03:19 +0000 |
parents | ae2556e256a4 |
children |
line wrap: on
line source
/* * This module contains the function for generating hex strings. */ #include <sys/types.h> #include <stdio.h> make_hex_string(inbuf, len, outbuf) u_char *inbuf; unsigned len; char *outbuf; { char *dp = outbuf; unsigned n; for (n = 0; n < len; n++) { sprintf(dp, "%02X", inbuf[n]); dp += 2; } *dp = '\0'; }