Skip to content

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

GLN_API size_t GLN_CALL gln_get_bank_info_tan_modes_count(const gln_bank_info_t* in_info);
  • Family: Typed info accessors
  • Return type: size_t

Purpose

Returns the number of TAN mode rows embedded in the typed info view.

Return

Returns the number of rows or entries materialized in the supplied typed view.

TypeNullabilityOwnership
size_tvaluevalue

Parameters

NameDirectionTypeNullabilityOwnership
in_infoinputconst gln_bank_info_t*nullableborrowed

Embedded TAN Modes

The info typed view copies each TAN mode row from the info result into embedded gln_tan_mode_t storage.

Use the same gln_get_tan_mode_* field accessors on these rows that are used for rows returned by gln_retrieve_tan_modes.

Notes

Passing NULL for in_info is allowed and returns 0.

Use this count as the exclusive upper bound for the matching _at accessor.

See Also