\brief Get the scope of an object. * * In case of multiple usages, this will be the one of first usage. * * The lifetime of the returned string is the same as the input obj parameter. * * @param obj Object (must not be NULL) * @return a string, or NULL in case of error or missing scope. */
| 1912 | * @return a string, or NULL in case of error or missing scope. |
| 1913 | */ |
| 1914 | const char *proj_get_scope(const PJ *obj) { return proj_get_scope_ex(obj, 0); } |
| 1915 | |
| 1916 | // --------------------------------------------------------------------------- |
| 1917 |