class RDoc::Markdown::Literals

def get_byte

def get_byte
  if @pos >= @string_size
    return nil
  end
  s = @string[@pos].ord
  @pos += 1
  s
end