<pre><code class="language-fortran">subroutine h5tbread_table_f(loc_id, table_name, nfields, dst_size, dst_offset, &
dst_sizes, dst_buf, errcode)
integer(HID_T), intent(IN) :: loc_id ! An array containing the sizes of the fields
character(LEN=*), intent(IN) :: table_name ! The name of the dataset to read
integer(HSIZE_T), intent(IN) :: nfields ! number of fields
integer(SIZE_T), intent(IN) :: dst_size ! The size of the structure type
integer(SIZE_T), dimension(1:nfields), intent(IN) :: dst_offset ! An array containing the offsets of the fields
integer(SIZE_T), dimension(1:nfields), intent(IN) :: dst_sizes ! An array containing the sizes of the fields
type(C_PTR), intent(out) :: dst_buf ! Buffer with data
integer :: errcode ! error code</code></pre> |