| 312 | } |
| 313 | |
| 314 | static bool isNumeric(const char *str) |
| 315 | { |
| 316 | for ( ; *str; str++) { if (!isdigit(*str)) return false; } |
| 317 | return true; |
| 318 | } |
| 319 | |
| 320 | // Validate the IMSI string "IMSI"+digits; return pointer to digits or NULL if invalid. |
| 321 | const char* extractIMSI(const char *IMSI) |