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