capi_version.f90 Source File


This file depends on

sourcefile~~capi_version.f90~~EfferentGraph sourcefile~capi_version.f90 capi_version.f90 sourcefile~ciaaw_version.f90 ciaaw_version.f90 sourcefile~capi_version.f90->sourcefile~ciaaw_version.f90

Files dependent on this one

sourcefile~~capi_version.f90~~AfferentGraph sourcefile~capi_version.f90 capi_version.f90 sourcefile~capi.f90 capi.f90 sourcefile~capi.f90->sourcefile~capi_version.f90 sourcefile~ciaaw.f90 ciaaw.f90 sourcefile~ciaaw.f90->sourcefile~capi.f90

Source Code

module ciaaw__capi_version
    !! Version: C API.
use iso_c_binding, only: c_ptr, c_null_char, c_loc
use ciaaw__version, only: get_version
implicit none
private

character(len=:), allocatable, target :: version_c

public :: capi_get_version

contains


function capi_get_version()bind(c, name='ciaaw_get_version')result(cptr)
    !! Get the version
    implicit none
    type(c_ptr) :: cptr
        !! C pointer to a string indicating the version.

    character(len=:), pointer :: fptr 

    fptr => get_version() 

    if(allocated(version_c))then
        deallocate(version_c)
    endif
    allocate(character(len=len(fptr)+1) :: version_c)

    version_c = fptr // c_null_char
    cptr = c_loc(version_c)
end function

end module ciaaw__capi_version