Added a function to convert int to []byte

This commit is contained in:
Alfred Kamanda 2024-12-05 16:58:03 +03:00
parent f733fe5636
commit a659fb06fa
Signed by untrusted user: Alfred-mk
GPG Key ID: 7EA3D01708908703

View File

@ -88,3 +88,10 @@ func (d DataTyp) ToBytes() []byte {
binary.BigEndian.PutUint16(bytes, uint16(d))
return bytes
}
// Convert int to []byte
func IntToBytes(value int) []byte {
bytes := make([]byte, 2)
binary.BigEndian.PutUint16(bytes, uint16(value))
return bytes
}