MCPcopy Create free account
hub / github.com/Kitware/VTK / pj_get_param

Function pj_get_param

ThirdParty/libproj/vtklibproj/src/ell_set.cpp:459–464  ·  view source on GitHub ↗

locate parameter in list */

Source from the content-addressed store, hash-verified

457
458/* locate parameter in list */
459static paralist *pj_get_param (paralist *list, const char *key) {
460 size_t l = strlen(key);
461 while (list && !(0==strncmp(list->param, key, l) && (0==list->param[l] || list->param[l] == '=') ) )
462 list = list->next;
463 return list;
464}
465
466
467static char *pj_param_value (paralist *list) {

Callers 5

pj_ellipsoidFunction · 0.85
ellps_ellpsFunction · 0.85
ellps_sizeFunction · 0.85
ellps_shapeFunction · 0.85
ellps_spherificationFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected