2
0
mirror of synced 2025-02-23 22:28:11 +00:00
torrent/bencode/string.go
2023-04-03 15:10:38 +10:00

10 lines
133 B
Go

//go:build !go1.20
package bencode
import "unsafe"
func bytesAsString(b []byte) string {
return *(*string)(unsafe.Pointer(&b))
}