class String

def getbyte(index)

def getbyte(index)
  self[index]
end

def setbyte(index, c)

def setbyte(index, c)
  self[index] = c
end