mirror of
https://github.com/fumiama/go-base16384.git
synced 2026-06-05 08:40:37 +08:00
20 lines
321 B
Go
20 lines
321 B
Go
// +build !386,!arm,!mipsle,!amd64,!arm64,!ppc64le,!mips64le
|
|
|
|
package base14
|
|
|
|
func EncodeString(s string) []byte {
|
|
return []byte{"stub!"}
|
|
}
|
|
|
|
func DecodeString(s string) []byte {
|
|
return []byte{"stub!"}
|
|
}
|
|
|
|
func Encode(b []byte) []byte {
|
|
return []byte{"stub!"}
|
|
}
|
|
|
|
func Decode(b []byte) []byte {
|
|
return []byte{"stub!"}
|
|
}
|