# File lib/HostSystem.rb, line 25
def HostSystem.s_to_ascii(s)
  r=""
  s.each_byte do |b|
    r+=to_ascii(b)
  end
  r
end