wrap_json_value_create_string Subroutine

private subroutine wrap_json_value_create_string(me, val, name)

Arguments

Type IntentOptional AttributesName
type(json_value), , pointer:: me
character(kind=CDK,len=*), intent(in) :: val
character(kind=CDK,len=*), intent(in) :: name

Description

Wrap json_value_create_string so that json_create_string may be called with actual character string arguments for 'name' and 'val' that are BOTH of 'DEFAULT' or 'ISO_10646' character kind.

Calls

proc~~wrap_json_value_create_string~~CallsGraph proc~wrap_json_value_create_string wrap_json_value_create_string proc~json_value_create_string json_value_create_string proc~wrap_json_value_create_string->proc~json_value_create_string interface~to_unicode to_unicode proc~wrap_json_value_create_string->interface~to_unicode proc~json_value_create json_value_create proc~json_value_create_string->proc~json_value_create proc~to_string to_string proc~json_value_create_string->proc~to_string proc~to_uni to_uni interface~to_unicode->proc~to_uni proc~to_uni_vec to_uni_vec interface~to_unicode->proc~to_uni_vec proc~destroy_json_data destroy_json_data proc~to_string->proc~destroy_json_data
Help

Source Code

    subroutine wrap_json_value_create_string(me,val,name)

    implicit none

    type(json_value),pointer             :: me
    character(kind=CDK,len=*),intent(in) :: name
    character(kind=CDK,len=*),intent(in) :: val

    call json_value_create_string(me,to_unicode(val),to_unicode(name))

    end subroutine wrap_json_value_create_string