Sign in
go
/
tools
/
fafb6e2e8a4a2af8f8048b66cef2e6316d1b9e3a
/
.
/
go
/
ssa
/
interp
/
testdata
/
src
/
unicode
/
utf8
/
utf8.go
blob: 0e44f7cb923dc60f2fc4cb7f965caffb815310be [
file
]
package utf8
func DecodeRuneInString(string) (rune, int)
func DecodeRune(b []byte) (rune, int) {
return DecodeRuneInString(string(b))
}
const RuneError = '\uFFFD'