| 1257 | // |
| 1258 | |
| 1259 | static bool arg_is_string(SLONG argc, TEXT** argvstring, const TEXT* errstring) |
| 1260 | { |
| 1261 | const TEXT* str = *++argvstring; |
| 1262 | |
| 1263 | if (!argc || *str == '-') |
| 1264 | { |
| 1265 | fprintf(stderr, "%s", errstring); |
| 1266 | print_switches(); |
| 1267 | return false; |
| 1268 | } |
| 1269 | |
| 1270 | return true; |
| 1271 | } |
| 1272 | |
| 1273 | |
| 1274 | //____________________________________________________________ |
no test coverage detected