view libcommon/number_decode.c @ 19:72a24b8538eb

meaty function of pb-dump moved back into simtool, out of libcommon Upon further reflection, I am not going to keep any of the pb-* commands in the new version of fc-uicc-tool: they are logically incorrect for UICC/USIM anyway, as they access phonebook files via old classic SIM paths, rather than their USIM paths. OTOH, I am going to implement new SMSP commands in fc-simtool, and I do not plan to replicate them in fc-uicc-tool either. Guts of fc-simtool pb-dump belong in simtool/pbdump.c, not in libcommon, just like the guts of the future smsp-dump command will belong in its own respective implementation module.
author Mychaela Falconia <falcon@freecalypso.org>
date Fri, 12 Feb 2021 03:33:26 +0000
parents 4a9bf783491d
children f5a26c1d0b93
line wrap: on
line source

/*
 * This module implements functions for decoding phone numbers.
 */

#include <sys/types.h>

static char gsm_address_digits[16] =
	{'0','1','2','3','4','5','6','7','8','9','*','#','a','b','c','?'};

decode_phone_number(data, nbytes, out)
	u_char *data;
	unsigned nbytes;
	char *out;
{
	u_char *dp, *endp;
	int c;

	dp = data;
	endp = data + nbytes;
	while (dp < endp) {
		c = *dp & 0xF;
		if (c == 0xF)
			return(-1);
		*out++ = gsm_address_digits[c];
		c = *dp >> 4;
		if (c == 0xF) {
			if (dp + 1 == endp)
				break;
			else
				return(-1);
		}
		*out++ = gsm_address_digits[c];
		dp++;
	}
	*out = '\0';
	return(0);
}