cbuf_type Derived Type

type, public :: cbuf_type


Inherits

type~~cbuf_type~~InheritsGraph type~cbuf_type cbuf_type c_ptr c_ptr type~cbuf_type->c_ptr ptr

Components

Type Visibility Attributes Name Initial
type(c_ptr), public :: ptr = c_null_ptr
character(len=1), public, pointer :: buffer(:) => NULL()

Source Code

  type cbuf_type
    type(c_ptr) :: ptr = c_null_ptr
    character, pointer :: buffer(:) => NULL()
  end type cbuf_type