view uptools/libcoding/hexencode.c @ 802:1c599681fd60

pcm-sms-decode & sms-pdu-decode: revamp bad char decoding
author Mychaela Falconia <falcon@freecalypso.org>
date Thu, 25 Mar 2021 02:58:30 +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';
}