Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(utf8_string), | intent(out) | :: | utf8 | |||
character(kind=c_char,len=*), | intent(in) | :: | str |
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