view uptools/libcoding/hexdecode.c @ 698:9ecbf1bf2e1b

fc-iram: added '+' to getopt magic string like in fc-xram Both fc-iram and fc-xram now support secondary program invokation. If the user needs to pass some options to the secondary program, we don't want fc-iram or fc-xram to claim these options as its own, thus we need to stop getopt() from reordering arguments. This fix was already implemented in fc-xram a long time ago, but the issue was overlooked when secondary program invokation ability was added to fc-iram.
author Mychaela Falconia <falcon@freecalypso.org>
date Tue, 31 Mar 2020 03:23:26 +0000
parents 18c692984549
children
line wrap: on
line source

/*
 * This library module implements decoding of long hex strings,
 * such as SMS PDUs.
 */

#include <sys/types.h>
#include <ctype.h>

decode_hex_line(inbuf, outbuf, outmax)
	char *inbuf;
	u_char *outbuf;
	unsigned outmax;
{
	char *inp = inbuf;
	u_char *outp = outbuf;
	unsigned outcnt = 0;
	int c, d[2], i;

	while (*inp) {
		if (!isxdigit(inp[0]) || !isxdigit(inp[1]))
			return(-1);
		if (outcnt >= outmax)
			break;
		for (i = 0; i < 2; i++) {
			c = *inp++;
			if (isdigit(c))
				d[i] = c - '0';
			else if (isupper(c))
				d[i] = c - 'A' + 10;
			else
				d[i] = c - 'a' + 10;
		}
		*outp++ = (d[0] << 4) | d[1];
		outcnt++;
	}
	return outcnt;
}