xmtop/vendor/github.com/DHowett/go-plist/zerocopy_appengine.go

8 lines
136 B
Go
Raw Normal View History

2019-01-14 20:18:13 -08:00
// +build appengine
package plist
func zeroCopy8BitString(buf []byte, off int, len int) string {
return string(buf[off : off+len])
}