summaryrefslogtreecommitdiff
path: root/vendor/github.com/chenzhuoyu/base64x/native_amd64.go
blob: a6f95575ae8705bcc83e725630b1e010418923d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//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)