Cstring Derived Type

type, public, bind(C) :: Cstring


Inherits

type~~cstring~~InheritsGraph type~cstring Cstring c_ptr c_ptr type~cstring->c_ptr string

Components

Type Visibility Attributes Name Initial
integer(kind=c_int64_t), public :: length
type(c_ptr), public :: string

Source Code

  type, public, bind(C) :: Cstring
    integer(c_int64_t) :: length
    type(c_ptr) :: string
  end type Cstring