mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-03-13 21:41:37 -05:00
8 lines
136 B
Go
8 lines
136 B
Go
// +build appengine
|
|
|
|
package plist
|
|
|
|
func zeroCopy8BitString(buf []byte, off int, len int) string {
|
|
return string(buf[off : off+len])
|
|
}
|