Sign in
go
/
tools.git
/
ece9e9ba0760eb361376c8a890b24e89db031d9e
/
.
/
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'