Skip to content

Declared in <galanthus/c_api/gln_capi.h>.

GLN_API const gln_ebics_supported_version_t* GLN_CALL gln_get_ebics_supported_version_at(
    const gln_ebics_supported_versions_t* in_versions,
    size_t                                in_index);
  • Family: EBICS setup and key lifecycle
  • Return type: const gln_ebics_supported_version_t*

Purpose

Returns the EBICS supported-version row at in_index, or NULL when the index is out of range.

Return

Returns the borrowed row or entry at in_index, or NULL when the handle is NULL or the index is out of range.

TypeNullabilityOwnership
const gln_ebics_supported_version_t*nullableborrowed

Parameters

NameDirectionTypeNullabilityOwnership
in_versionsinputconst gln_ebics_supported_versions_t*nullableborrowed
in_indexinputsize_tvaluevalue

Notes

Passing NULL for in_versions is allowed and returns NULL.

See Also