class FFI::LibraryPath

def to_s

def to_s
  if root
    # If the root path is given, we generate the full path:
    File.join(root, full_name)
  else
    full_name
  end
end