utf8_assign_from_char Subroutine

public subroutine utf8_assign_from_char(utf8, str)

Arguments

TypeIntentOptionalAttributesName
type(utf8_string), intent(out) :: utf8
character(kind=c_char,len=*), intent(in) :: str

Contents

Source Code


Source Code

    subroutine utf8_assign_from_char(utf8, str)
        type(utf8_string), intent(out) :: utf8
        character(len=*, kind=c_char), intent(in) :: str

        call utf8_construct_from_char(utf8, str, .false.)

    end subroutine utf8_assign_from_char