FreeCalypso > hg > fc-sim-tools
view libutil/decimal_str.c @ 93:6041c601304d
fcsim1-mkprov: revert OTA key addition
It appears that GrcardSIM2 cards (which is what we got for FCSIM1)
do not support OTA after all, contrary to what we were previously
led to believe by some tech support emails from Grcard - apparently
those support emails and OTA descriptions referred to some other
card model(s).
| author | Mychaela Falconia <falcon@freecalypso.org> |
|---|---|
| date | Wed, 21 Apr 2021 05:38:39 +0000 |
| parents | 34bbb0585cab |
| children |
line wrap: on
line source
/* * This module implements some functions for initial parsing of decimal * string arguments, intended for implementation of commands like * write-iccid and write-imsi. */ #include <sys/types.h> #include <ctype.h> #include <stdio.h> parse_decimal_string_arg(arg, dest, maxdigits) char *arg; u_char *dest; unsigned maxdigits; { unsigned n, ndig; if (!*arg) { fprintf(stderr, "error: empty argument given for decimal string\n"); return(-1); } for (n = 0; *arg; ) { if (!isdigit(*arg)) { fprintf(stderr, "error: non-digit char in decimal string argument\n"); return(-1); } if (n >= maxdigits) { fprintf(stderr, "error: decimal string exceeds limit of %u digits\n", maxdigits); return(-1); } dest[n++] = *arg++ - '0'; } ndig = n; while (n < maxdigits) dest[n++] = 0xF; return ndig; }
