This PR fixes two problems with the Fortran API that I encountered while integrating TREXIO into CP2K:
The interface to function trexio_info() was returning an integer rather than a c_int32_t. To fix it @scemama and I used the same trick used for function trexio_open.
The subroutine trexio_strarray2str had an unused dummy argument, max_str_len, which we removed from the signature and for the relevant subroutine calls.
This PR fixes two problems with the Fortran API that I encountered while integrating TREXIO into CP2K:
function trexio_info()
was returning aninteger
rather than ac_int32_t
. To fix it @scemama and I used the same trick used forfunction trexio_open
.subroutine trexio_strarray2str
had an unused dummy argument,max_str_len
, which we removed from the signature and for the relevant subroutine calls.