| 465 | |
| 466 | |
| 467 | static char *pj_param_value (paralist *list) { |
| 468 | char *key, *value; |
| 469 | if (nullptr==list) |
| 470 | return nullptr; |
| 471 | |
| 472 | key = list->param; |
| 473 | value = strchr (key, '='); |
| 474 | |
| 475 | /* a flag (i.e. a key without value) has its own name (key) as value */ |
| 476 | return value? value + 1: key; |
| 477 | } |
| 478 | |
| 479 | |
| 480 | static const PJ_ELLPS *pj_find_ellps (const char *name) { |
no outgoing calls
no test coverage detected