| 142 | } |
| 143 | |
| 144 | static inline PJ_COORD error_or_coord(PJ *P, PJ_COORD coord, int last_errno) { |
| 145 | if (P->ctx->last_errno) |
| 146 | return proj_coord_error(); |
| 147 | |
| 148 | P->ctx->last_errno = last_errno; |
| 149 | |
| 150 | return coord; |
| 151 | } |
| 152 | |
| 153 | PJ_LP pj_inv(PJ_XY xy, PJ *P) { |
| 154 | PJ_COORD coo = {{0, 0, 0, 0}}; |
no test coverage detected