Skip to content
Snippets Groups Projects
adios2_functions_mod.f90 1.09 KiB
Newer Older
module adios2_functions
    use adios2_parameters
    implicit none

contains

    integer function adios2_LogicalToInt( logical_value )
        logical, value, intent(in) :: logical_value

        adios2_LogicalToInt = 0
        if( logical_value ) then
            adios2_LogicalToInt = 1
        end if

    end function


    subroutine adios2_StringC2F( c_string, length, f_string )
        character*(*), intent(in) :: c_string
        integer, intent(in) :: length
        character(len=:), allocatable, intent(out) :: f_string

        if( allocated(f_string) ) deallocate(f_string)
        if( length > 0 ) then
            allocate( character(length) :: f_string )
            f_string = c_string(1:length)
        end if

    end subroutine


    subroutine adios2_TypeC2F( c_type, f_type )
        integer, intent(in) :: c_type
        integer, intent(out) :: f_type

        integer :: i

        f_type = adios2_type_unknown

        do i=-1,11
            if( c_type == i ) then
                f_type = c_type
                exit
            end if
        end do

    end subroutine

end module