fson_string Derived Type

type, public :: fson_string


Contents

Source Code


Components

TypeVisibility AttributesNameInitial
character(len=BLOCK_SIZE), public :: chars
integer, public :: index =0
type(fson_string), public, pointer:: next=> null()

Source Code

  type fson_string
     character (len = BLOCK_SIZE) :: chars
     integer :: index = 0
     type(fson_string), pointer :: next => null()
  end type fson_string