class FFI::MemoryPointer

def self.from_string(s)

def self.from_string(s)
  ptr = self.new(s.length + 1, 1, false)
  ptr.put_string(0, s)
  ptr
end