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'