class FFIGen::Clang::String

(Not documented)

Fields:

:data

(FFI::Pointer(*Void))

:private_flags

(Integer)

Public Instance Methods

to_s() click to toggle source
# File lib/ffi_gen.rb, line 36
def to_s
  Clang.get_c_string self
end
to_s_and_dispose() click to toggle source
# File lib/ffi_gen.rb, line 40
def to_s_and_dispose
  str = to_s
  Clang.dispose_string self
  str
end