view libutil/decimal_incr.c @ 57:bccf028921bb

apdu-checksw command added to both fc-simtool and fc-uicc-tool
author Mychaela Falconia <falcon@freecalypso.org>
date Mon, 22 Mar 2021 23:58:11 +0000
parents 9c9f6adbaedb
children
line wrap: on
line source

/*
 * This module implements a function for incrementing decimal strings,
 * to be used in producing ranges of ICCID and IMSI numbers.
 */

#include <sys/types.h>

void
decimal_string_increment(str, ndigits)
	u_char *str;
	unsigned ndigits;
{
	u_char *p;

	for (p = str + ndigits; p > str; ) {
		--p;
		(*p)++;
		if (*p < 10)
			return;
		*p = 0;
	}
}