lordhippo/odin-protobuf

int32 encoding

Opened this issue · 0 comments

Verify if 32-bits int also occupy 64 bits when negative.

encode_int32 :: proc(value: i32) -> wire.Value_VARINT {
// TODO: verify if 32-bits int also occupy 64 bits when negative
return encode_int64(i64(value))
}