mirror of
https://github.com/go-gitea/gitea.git
synced 2024-10-31 08:37:35 -04:00
23 lines
362 B
Go
23 lines
362 B
Go
|
// +build !appengine
|
||
|
|
||
|
package util
|
||
|
|
||
|
import (
|
||
|
"unsafe"
|
||
|
)
|
||
|
|
||
|
// BytesToString converts byte slice to string.
|
||
|
func BytesToString(b []byte) string {
|
||
|
return *(*string)(unsafe.Pointer(&b))
|
||
|
}
|
||
|
|
||
|
// StringToBytes converts string to byte slice.
|
||
|
func StringToBytes(s string) []byte {
|
||
|
return *(*[]byte)(unsafe.Pointer(
|
||
|
&struct {
|
||
|
string
|
||
|
Cap int
|
||
|
}{s, len(s)},
|
||
|
))
|
||
|
}
|