.gitignore added
[dotfiles/.git] / .config / coc / extensions / coc-go-data / tools / pkg / mod / golang.org / x / tools@v0.1.0 / go / ssa / interp / testdata / src / unicode / utf8 / utf8.go
diff --git a/.config/coc/extensions/coc-go-data/tools/pkg/mod/golang.org/x/tools@v0.1.0/go/ssa/interp/testdata/src/unicode/utf8/utf8.go b/.config/coc/extensions/coc-go-data/tools/pkg/mod/golang.org/x/tools@v0.1.0/go/ssa/interp/testdata/src/unicode/utf8/utf8.go
new file mode 100644 (file)
index 0000000..0e44f7c
--- /dev/null
@@ -0,0 +1,9 @@
+package utf8
+
+func DecodeRuneInString(string) (rune, int)
+
+func DecodeRune(b []byte) (rune, int) {
+       return DecodeRuneInString(string(b))
+}
+
+const RuneError = '\uFFFD'