| 1238 | // |
| 1239 | |
| 1240 | static bool all_digits(const char* str1) |
| 1241 | { |
| 1242 | for (; *str1; str1++) |
| 1243 | { |
| 1244 | if (!(get_classes(*str1) & CHR_DIGIT)) |
| 1245 | return false; |
| 1246 | } |
| 1247 | |
| 1248 | return true; |
| 1249 | } |
| 1250 | |
| 1251 | |
| 1252 | //____________________________________________________________ |