column to double */
| 577 | |
| 578 | /* column to double */ |
| 579 | static double cold(const char *args, int col) { |
| 580 | char *endp; |
| 581 | double d; |
| 582 | const char *target = column(args, col); |
| 583 | d = proj_strtod(target, &endp); |
| 584 | if (endp == target) |
| 585 | return HUGE_VAL; |
| 586 | return d; |
| 587 | } |
| 588 | |
| 589 | PJ_COORD parse_input_line(const char *buf, int *columns, double fixed_height, |
| 590 | double fixed_time) { |
no test coverage detected