initial commits

master
Charles Iliya Krempeaux 2023-10-27 22:13:42 -07:00
parent be887e7e6d
commit 33764fecda
1 changed files with 17 additions and 0 deletions

17
encodebyte.go 100644
View File

@ -0,0 +1,17 @@
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)
}