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