service/vendor/github.com/chenzhuoyu/base64x/native_amd64.go

17 lines
328 B
Go
Raw Normal View History

2023-12-21 22:17:40 +08:00
//go:generate make
package base64x
import (
`unsafe`
)
//go:nosplit
//go:noescape
//goland:noinspection GoUnusedParameter
func __b64encode(out *[]byte, src *[]byte, mode int)
//go:nosplit
//go:noescape
//goland:noinspection GoUnusedParameter
func __b64decode(out *[]byte, src unsafe.Pointer, len int, mode int) (ret int)