Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(json_value), | intent(inout), | pointer | :: | me | ||
character(kind=CDK,len=*), | intent(in) | :: | name | name of the variable |
||
character(kind=CDK,len=*), | intent(in) | :: | val | value |
Alternate version of json_value_add_string where "name" and "val" are kind=CDK.
subroutine wrap_json_value_add_string(me, name, val)
implicit none
type(json_value),pointer :: me
character(kind=CDK,len=*),intent(in) :: name !! name of the variable
character(kind=CDK,len=*),intent(in) :: val !! value
call json_value_add_string(me, to_unicode(name), to_unicode(val))
end subroutine wrap_json_value_add_string