mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-01 15:00:00 +00:00
17 lines
328 B
Go
17 lines
328 B
Go
//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)
|