FreeCalypso > hg > fc-sim-tools
view libutil/decimal_incr.c @ 68:c5e7c9e1d857
GSM7 to qstring decoding: rework in a new way, emit \E for Euro
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Thu, 25 Mar 2021 00:04:08 +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; } }