go-hexadeca/encodebyte.go

18 lines
555 B
Go
Raw Normal View History

2023-10-28 05:13:42 +00:00
package hexadeca
import (
"sourcecode.social/reiver/go-hexadeca/bytes"
)
func EncodeByte(value byte, symbolFunc func(byte)byte) (mostSignificant byte, leastSignificant byte) {
return hexadecabytes.EncodeByte(value, symbolFunc)
}
func EncodeByteUsingLowerCaseSymbols(value byte) (mostSignificant byte, leastSignificant byte) {
return hexadecabytes.EncodeByteUsingLowerCaseSymbols(value)
}
func EncodeByteUsingUpperCaseSymbols(value byte) (mostSignificant byte, leastSignificant byte) {
return hexadecabytes.EncodeByteUsingUpperCaseSymbols(value)
}