summaryrefslogtreecommitdiff
path: root/vendor/github.com/cloudwego/base64x/base64x_subr_amd64.go
blob: 022984bda47753486d2d5f421b3b01802ddef9db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18


package base64x

import (
	"github.com/cloudwego/base64x/internal/native"
)

// HACK: maintain these only to prevent breakchange, because sonic-go linkname these
var (
	_subr__b64decode uintptr
	_subr__b64encode uintptr
)

func init() {
	_subr__b64decode = native.S_b64decode
	_subr__b64encode = native.S_b64encode
}