initial commits
parent
bcc8117048
commit
2838b466fe
|
@ -7,8 +7,8 @@ import (
|
||||||
// EncodeByte encodes the value of a byte into hexadecimal.
|
// EncodeByte encodes the value of a byte into hexadecimal.
|
||||||
func EncodeByte(value byte, symbolFunc func(byte)byte) (mostSignificant byte, leastSignificant byte) {
|
func EncodeByte(value byte, symbolFunc func(byte)byte) (mostSignificant byte, leastSignificant byte) {
|
||||||
|
|
||||||
mostSignificant = symbolFunc( (0xf0 & value) >> 4 )
|
mostSignificant = symbolFunc( (0x0f & (value >> 4)) )
|
||||||
leastSignificant = symbolFunc( (0x0f & value) )
|
leastSignificant = symbolFunc( (0x0f & (value )) )
|
||||||
|
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue