Files
opencloud/vendor/github.com/philhofer/fwd/writer_tinygo.go
André Duffeck 888d0c8d99 Bump reva
2025-06-05 15:23:58 +02:00

14 lines
190 B
Go

//go:build tinygo
// +build tinygo
package fwd
import (
"unsafe"
)
// unsafe cast string as []byte
func unsafestr(b string) []byte {
return unsafe.Slice(unsafe.StringData(b), len(b))
}