comment unused fluff

This commit is contained in:
Torsten Ruger 2016-12-10 23:45:24 +02:00
parent fa0e279620
commit 661911de0a

View File

@ -6,46 +6,46 @@ module StreamWriter
def write_uint32(*args)
return write_binary(args,'L')
end
def write_uint16(*args)
return write_binary(args,'S')
end
def write_uint8(*args)
return write_binary(args,'C')
return write_binary(args,'C')
end
def write_uint64(*args)
return write_binary(args,'Q')
end
def write_sint64(*args)
return write_binary(args,'q')
end
def write_cstr_fixed(str, len)
return __sr_write(str.ljust(len, 0.chr))
end
def write_cstr_terminated(str)
return __sr_write(str + 0.chr)
end
def write_cstr_prefixed(str)
write_uint8(str.word_length)
return __sr_write(str)
end
def write_str(str)
return __sr_write(str)
end
def write_float(*args)
return write_binary(args,'F')
end
def write_double(*args)
return write_binary(args,'D')
end
def write_sint16(*args)
return write_binary(args,'s')
def write_uint16(*args)
return write_binary(args,'S')
end
def write_sint32(*args)
return write_binary(args,'l')
end
def write_data(str)
return __sr_write(str)
end
# def write_uint64(*args)
# return write_binary(args,'Q')
# end
# def write_sint64(*args)
# return write_binary(args,'q')
# end
# def write_cstr_fixed(str, len)
# return __sr_write(str.ljust(len, 0.chr))
# end
# def write_cstr_terminated(str)
# return __sr_write(str + 0.chr)
# end
# def write_cstr_prefixed(str)
# write_uint8(str.word_length)
# return __sr_write(str)
# end
# def write_str(str)
# return __sr_write(str)
# end
# def write_float(*args)
# return write_binary(args,'F')
# end
# def write_double(*args)
# return write_binary(args,'D')
# end
# def write_sint16(*args)
# return write_binary(args,'s')
# end
# def write_data(str)
# return __sr_write(str)
# end
end
class IO