view libutil/decimal_incr.c @ 87:0e46bbb801e0

fc-uicc-tool: internal code in preparation for porting extended readef, savebin, restore-file and erase-file commands from fc-simtool
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 11 Apr 2021 03:52:48 +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;
	}
}